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:
parent
b9f45d533f
commit
f7d98dc6ec
|
@ -56,7 +56,7 @@ public abstract class CharSequenceTranslator {
|
|||
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) {
|
||||
|
|
Loading…
Reference in New Issue