diff --git a/src/main/java/org/apache/commons/lang3/text/translate/NumericEntityEscaper.java b/src/main/java/org/apache/commons/lang3/text/translate/NumericEntityEscaper.java index 77f6d8dce..9d7346667 100644 --- a/src/main/java/org/apache/commons/lang3/text/translate/NumericEntityEscaper.java +++ b/src/main/java/org/apache/commons/lang3/text/translate/NumericEntityEscaper.java @@ -5,9 +5,9 @@ * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -21,7 +21,7 @@ import java.io.Writer; /** * Translates codepoints to their XML numeric entity escaped value. - * + * * @author Apache Software Foundation * @since 3.0 * @version $Id$ @@ -33,9 +33,9 @@ public class NumericEntityEscaper extends CodePointTranslator { private final boolean between; /** - *
Constructs a NumericEntityEscaper
for the specified range. This is
+ *
Constructs a NumericEntityEscaper
for the specified range. This is
* the underlying method for the other constructors/builders. The below
- * and above
boundaries are inclusive when between
is
+ * and above
boundaries are inclusive when between
is
* true
and exclusive when it is false
.
Constructs a NumericEntityEscaper
for all characters.
Constructs a NumericEntityEscaper
below the specified value (exclusive).
Constructs a NumericEntityEscaper
above the specified value (exclusive).