git-svn-id: https://zxing.googlecode.com/svn/trunk@859 59b500cc-1b3d-0410-9834-0bbf25fbcc57

This commit is contained in:
srowen 2009-02-15 12:38:12 +00:00
parent 8e73582187
commit 1e96791817

View file

@ -60,6 +60,9 @@ final class EmailDoCoMoResultParser extends AbstractDoCoMoResultParser {
for (int i = 0; i < email.length(); i++) {
char c = email.charAt(i);
if (c == '@') {
if (atFound) {
return false;
}
atFound = true;
} else if (c == '.') {
periodFound = true;