Removing the note on '2' being in the API. That can be dealt with if people find doubling to be an issue

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1066348 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-02-02 06:38:08 +00:00
parent b9f45d533f
commit f7d98dc6ec
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public final String translate(CharSequence input) {
return null;
}
try {
StringWriter writer = new StringWriter(input.length() * 2); // TODO: Make the 2 part of the API???
StringWriter writer = new StringWriter(input.length() * 2);
translate(input, writer);
return writer.toString();
} catch (IOException ioe) {