Skip to content

Commit

Permalink
cleanup debbugging message
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun-joo-kim committed Mar 9, 2017
1 parent 0893992 commit 12736bb
Showing 1 changed file with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,6 @@ private void generateTokens() {
try {
// ZZ is the generic "I don't know the country code" region. Google's libphone library will try to
// infer it.
//>>>>>>>>>>>>>>test
int indexOfPhoneContext = number.indexOf(";phone-context=");
if (indexOfPhoneContext > 0) {
int phoneContextStart = indexOfPhoneContext + ";phone-context=".length();
if (number.length() <= phoneContextStart) {
System.out.println(">>>test number = "+number+", phoneContextStart= "+phoneContextStart+", number len= "+number.length());
}
}
//<<<<<<<<<<<<<<
numberProto = phoneUtil.parse(number, "ZZ");
if (numberProto != null) {
// Libphone likes it!
Expand Down Expand Up @@ -168,4 +159,4 @@ public final void reset() throws IOException {
this.stringToTokenize = null;
clearAttributes();
}
}
}

0 comments on commit 12736bb

Please sign in to comment.