Unnecessary semi-colon;
Remove TODO which has been addressed git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@828897 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
711e204e73
commit
8ee228155c
|
@ -29,7 +29,7 @@ import java.util.Arrays;
|
||||||
*/
|
*/
|
||||||
public class UnicodeUnescaper extends CharSequenceTranslator {
|
public class UnicodeUnescaper extends CharSequenceTranslator {
|
||||||
|
|
||||||
public static enum OPTION { escapePlus };
|
public static enum OPTION { escapePlus }
|
||||||
|
|
||||||
// TODO: Create an OptionsSet class to hide some of the conditional logic below
|
// TODO: Create an OptionsSet class to hide some of the conditional logic below
|
||||||
private final EnumSet<OPTION> options;
|
private final EnumSet<OPTION> options;
|
||||||
|
@ -49,7 +49,6 @@ public class UnicodeUnescaper extends CharSequenceTranslator {
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
// TODO: Handle \\u+0045 variant
|
|
||||||
@Override
|
@Override
|
||||||
public int translate(CharSequence input, int index, Writer out) throws IOException {
|
public int translate(CharSequence input, int index, Writer out) throws IOException {
|
||||||
if(input.charAt(index) == '\\') {
|
if(input.charAt(index) == '\\') {
|
||||||
|
|
Loading…
Reference in New Issue