Oops, one more compile problem fixed. Also delete redundant copies of core and javase jars.

git-svn-id: https://zxing.googlecode.com/svn/trunk@387 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2008-05-05 17:54:15 +00:00
parent 13b637fa53
commit bad9cc10af
3 changed files with 4 additions and 2 deletions

View 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();
}
}

Binary file not shown.

Binary file not shown.