You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by le...@apache.org on 2020/04/10 15:37:36 UTC

svn commit: r1876372 - /pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cmap/CodespaceRange.java

Author: lehmi
Date: Fri Apr 10 15:37:36 2020
New Revision: 1876372

URL: http://svn.apache.org/viewvc?rev=1876372&view=rev
Log:
PDFBOX-4810: fix javadoc encoding issue

Modified:
    pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cmap/CodespaceRange.java

Modified: pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cmap/CodespaceRange.java
URL: http://svn.apache.org/viewvc/pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cmap/CodespaceRange.java?rev=1876372&r1=1876371&r2=1876372&view=diff
==============================================================================
--- pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cmap/CodespaceRange.java (original)
+++ pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cmap/CodespaceRange.java Fri Apr 10 15:37:36 2020
@@ -31,9 +31,9 @@ public class CodespaceRange
      * Creates a new instance of CodespaceRange. The length of both arrays has to be the same.<br>
      * For one byte ranges startBytes and endBytes define a linear range of values. Double byte values define a rectangular
      * range not a linear range. Examples: <br>
-     * <00> <20> defines a linear range from 0x00 up to 0x20.<br>
-     * <8140> to <9FFC> defines a rectangular range. The high byte has to be within 0x81 and 0x9F and the low byte has to be
-     * within 0x40 and 0xFC
+     * &lt;00&gt; &lt;20&gt; defines a linear range from 0x00 up to 0x20.<br>
+     * &lt;8140&gt; to &lt;9FFC&gt; defines a rectangular range. The high byte has to be within 0x81 and 0x9F and the low
+     * byte has to be within 0x40 and 0xFC
      * 
      */
     public CodespaceRange(byte[] startBytes, byte[] endBytes)