mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 04:54:04 -08:00
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:
parent
13b637fa53
commit
bad9cc10af
|
@ -162,8 +162,10 @@ final class DecodeEmailTask extends TimerTask {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
Authenticator emailAuthenticator = new EmailAuthenticator(args[0], args[1]);
|
String emailAddress = args[0];
|
||||||
new DecodeEmailTask(emailAuthenticator).run();
|
String emailPassword = args[1];
|
||||||
|
Authenticator emailAuthenticator = new EmailAuthenticator(emailAddress, emailPassword);
|
||||||
|
new DecodeEmailTask(emailAddress, emailAuthenticator).run();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue