Adding back the empty constructor per Sebb's comment on LANG-540

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@828942 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2009-10-23 06:43:26 +00:00
parent f20df89b6f
commit 37405f1efe
1 changed files with 4 additions and 0 deletions

View File

@ -35,6 +35,10 @@ public class NumericEntityEscaper extends CodePointTranslator {
this.between = between; this.between = between;
} }
public NumericEntityEscaper() {
this(0, Integer.MAX_VALUE, true);
}
public static NumericEntityEscaper below(int codepoint) { public static NumericEntityEscaper below(int codepoint) {
return outsideOf(codepoint, Integer.MAX_VALUE); return outsideOf(codepoint, Integer.MAX_VALUE);
} }