diff options
author | Simon Steiner <ssteiner@apache.org> | 2018-03-09 14:03:14 +0000 |
---|---|---|
committer | Simon Steiner <ssteiner@apache.org> | 2018-03-09 14:03:14 +0000 |
commit | 30570ab6c9a3bd51a0535096d77902667c613d5e (patch) | |
tree | ebf1bddc70583161c84001ace737bd1cb265ab3c | |
parent | a6fc886c8d336fe116cb9ee163e4c8ce84f17dd4 (diff) | |
download | xmlgraphics-fop-Temp_SurrogatePairs.tar.gz xmlgraphics-fop-Temp_SurrogatePairs.zip |
Fix javadocsTemp_SurrogatePairs
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_SurrogatePairs@1826350 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | fop-core/src/main/java/org/apache/fop/util/CharUtilities.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fop-core/src/main/java/org/apache/fop/util/CharUtilities.java b/fop-core/src/main/java/org/apache/fop/util/CharUtilities.java index 10a66f36b..4be495209 100644 --- a/fop-core/src/main/java/org/apache/fop/util/CharUtilities.java +++ b/fop-core/src/main/java/org/apache/fop/util/CharUtilities.java @@ -374,8 +374,8 @@ public class CharUtilities { * Returns 1 if codePoint not in the BMP. This function is particularly useful in for * loops over strings where, in presence of surrogate pairs, you need to skip one loop. * - * @param codePoint 1 if codePoint > 0xFFFF, 0 otherwise - * @return 1 if codePoint > 0xFFFF, 0 otherwise + * @param codePoint 1 if codePoint > 0xFFFF, 0 otherwise + * @return 1 if codePoint > 0xFFFF, 0 otherwise */ public static int incrementIfNonBMP(int codePoint) { return isBmpCodePoint(codePoint) ? 0 : 1; @@ -443,7 +443,7 @@ public class CharUtilities { /** * Creates an iterator to iter a sub-CharSequence codepoints. * - * @see <a haref="http://bugs.java.com/bugdatabase/view_bug.do?bug_id=5003547">Bug JDK-5003547</a> + * @see <a href="http://bugs.java.com/bugdatabase/view_bug.do?bug_id=5003547">Bug JDK-5003547</a> * @param s {@link CharSequence} to iter * @param beginIndex lower range * @param endIndex upper range |