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:
Henri Yandell 2011-04-03 21:45:35 +00:00
parent 161b9cb4ca
commit a859fffc0a
1 changed files with 2 additions and 4 deletions

View File

@ -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);
}
/**