svn commit: r1826350 - /xmlgraphics/fop/branches/Temp_SurrogatePairs/fop-core/src/main/java/org/apache/fop/util/CharUtilities.java
[email protected] Fri, 09 Mar 2018 14:03:15 -0000
| Newsgroups | gmane.text.xml.fop.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: ssteiner
Date: Fri Mar 9 14:03:14 2018
New Revision: 1826350
URL: http://svn.apache.org/viewvc?rev=1826350&view=rev
Log:
Fix javadocs
Modified:
xmlgraphics/fop/branches/Temp_SurrogatePairs/fop-core/src/main/java/org/apache/fop/util/CharUtilities.java
Modified: xmlgraphics/fop/branches/Temp_SurrogatePairs/fop-core/src/main/java/org/apache/fop/util/CharUtilities.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_SurrogatePairs/fop-core/src/main/java/org/apache/fop/util/CharUtilities.java?rev=1826350&r1=1826349&r2=1826350&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_SurrogatePairs/fop-core/src/main/java/org/apache/fop/util/CharUtilities.java (original)
+++ xmlgraphics/fop/branches/Temp_SurrogatePairs/fop-core/src/main/java/org/apache/fop/util/CharUtilities.java Fri Mar 9 14:03:14 2018
@@ -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