Adding some todo notes
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@788255 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
05107d6474
commit
f8a77fc872
|
@ -20,7 +20,7 @@ import java.io.IOException;
|
||||||
import java.io.Writer;
|
import java.io.Writer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Translates codepoints to their unicode escape value.
|
* Translates codepoints to their unicode escaped value.
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
*/
|
*/
|
||||||
public class UnicodeEscaper extends CodePointTranslator {
|
public class UnicodeEscaper extends CodePointTranslator {
|
||||||
|
@ -66,6 +66,8 @@ public class UnicodeEscaper extends CodePointTranslator {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Handle multiple u's per Java spec
|
||||||
|
// TODO: Handle potential + sign per various unicode escape implementations
|
||||||
if (codepoint > 0xffff) {
|
if (codepoint > 0xffff) {
|
||||||
// TODO: Figure out what to do. Output as two unicodes?
|
// TODO: Figure out what to do. Output as two unicodes?
|
||||||
// Does this make this a Java-specific output class?
|
// Does this make this a Java-specific output class?
|
||||||
|
|
Loading…
Reference in New Issue