Oops, one more compile problem fixed. Also delete redundant copies of core and javase...
authorsrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Mon, 5 May 2008 17:54:15 +0000 (17:54 +0000)
committersrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Mon, 5 May 2008 17:54:15 +0000 (17:54 +0000)
git-svn-id: http://zxing.googlecode.com/svn/trunk@387 59b500cc-1b3d-0410-9834-0bbf25fbcc57

zxingorg/src/com/google/zxing/web/DecodeEmailTask.java
zxingorg/web/WEB-INF/lib/core.jar [deleted file]
zxingorg/web/WEB-INF/lib/javase.jar [deleted file]

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
diff --git a/zxingorg/web/WEB-INF/lib/core.jar b/zxingorg/web/WEB-INF/lib/core.jar
deleted file mode 100644 (file)
index 16a9e8e..0000000
Binary files a/zxingorg/web/WEB-INF/lib/core.jar and /dev/null differ
diff --git a/zxingorg/web/WEB-INF/lib/javase.jar b/zxingorg/web/WEB-INF/lib/javase.jar
deleted file mode 100644 (file)
index d7d05b4..0000000
Binary files a/zxingorg/web/WEB-INF/lib/javase.jar and /dev/null differ