Removing the multi-line TODO so it shows up as 1 TODO

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1066351 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-02-02 06:41:33 +00:00
parent 8106d2c387
commit d0574706e1
1 changed files with 2 additions and 2 deletions

View File

@ -96,8 +96,8 @@ public class StringEscapeUtils {
public static final CharSequenceTranslator ESCAPE_CSV = new CsvEscaper();
// TODO: Create a parent class - 'SinglePassTranslator' ?
// TODO: It would handle the index checking, and length returning, and
// TODO: could also have an optimization check method.
// It would handle the index checking + length returning,
// and could also have an optimization check method.
static class CsvEscaper extends CharSequenceTranslator {
private static final char CSV_DELIMITER = ',';