Removing unnecessary code
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1088424 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
161b9cb4ca
commit
a859fffc0a
|
@ -83,8 +83,7 @@ public class UnicodeEscaper extends CodePointTranslator {
|
|||
* @return the newly created {@code UnicodeEscaper} instance
|
||||
*/
|
||||
public static UnicodeEscaper outsideOf(int codepointLow, int codepointHigh) {
|
||||
UnicodeEscaper escaper = new UnicodeEscaper(codepointLow, codepointHigh, false);
|
||||
return escaper;
|
||||
return new UnicodeEscaper(codepointLow, codepointHigh, false);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -95,8 +94,7 @@ public class UnicodeEscaper extends CodePointTranslator {
|
|||
* @return the newly created {@code UnicodeEscaper} instance
|
||||
*/
|
||||
public static UnicodeEscaper between(int codepointLow, int codepointHigh) {
|
||||
UnicodeEscaper escaper = new UnicodeEscaper(codepointLow, codepointHigh, true);
|
||||
return escaper;
|
||||
return new UnicodeEscaper(codepointLow, codepointHigh, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue