Removing leftover trace statement

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1142390 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-07-03 07:57:13 +00:00
parent 8914d7f617
commit 4509b8a49c
1 changed files with 0 additions and 1 deletions

View File

@ -69,7 +69,6 @@ public int translate(CharSequence input, int index, Writer out) throws IOExcepti
entityValue = Integer.parseInt(input.subSequence(start, end).toString(), 10); entityValue = Integer.parseInt(input.subSequence(start, end).toString(), 10);
} }
} catch(NumberFormatException nfe) { } catch(NumberFormatException nfe) {
System.err.println("FAIL: " + input.subSequence(start, end) + "[" + start +"]["+ end +"]");
return 0; return 0;
} }