Oops, one more compile problem fixed. Also delete redundant copies of core and javase...
[zxing.git] / zxingorg / src / com / google / zxing / web / DecodeEmailTask.java
index a1e5c25..9105177 100644 (file)
@@ -162,8 +162,10 @@ final class DecodeEmailTask extends TimerTask {
   }
 
   public static void main(String[] args) {
-    Authenticator emailAuthenticator = new EmailAuthenticator(args[0], args[1]);
-    new DecodeEmailTask(emailAuthenticator).run();
+    String emailAddress = args[0];
+    String emailPassword = args[1];
+    Authenticator emailAuthenticator = new EmailAuthenticator(emailAddress, emailPassword);
+    new DecodeEmailTask(emailAddress, emailAuthenticator).run();
   }
 
 }
\ No newline at end of file