Missing interface @Override
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1417452 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
78ef8313bd
commit
b1304061e9
|
@ -2757,6 +2757,7 @@ public class StrBuilder implements CharSequence, Appendable, Serializable, Build
|
|||
* @since Apache Commons Lang 3.2
|
||||
* @see #toString()
|
||||
*/
|
||||
@Override
|
||||
public String build() {
|
||||
return toString();
|
||||
}
|
||||
|
|
|
@ -88,6 +88,7 @@ public class JavaUnicodeEscaper extends UnicodeEscaper {
|
|||
* @param codePoint
|
||||
* a Unicode code point
|
||||
*/
|
||||
@Override
|
||||
protected String toUtf16Escape(int codepoint) {
|
||||
char[] surrogatePair = Character.toChars(codepoint);
|
||||
return "\\u" + hex(surrogatePair[0]) + "\\u" + hex(surrogatePair[1]);
|
||||
|
|
Loading…
Reference in New Issue