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:38:36 UTC

svn commit: r1876373 - /pdfbox/branches/2.0/fontbox/src/main/java/org/apache/fontbox/cmap/CodespaceRange.java

Author: lehmi
Date: Fri Apr 10 15:38:35 2020
New Revision: 1876373

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

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

Modified: pdfbox/branches/2.0/fontbox/src/main/java/org/apache/fontbox/cmap/CodespaceRange.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/fontbox/src/main/java/org/apache/fontbox/cmap/CodespaceRange.java?rev=1876373&r1=1876372&r2=1876373&view=diff
==============================================================================
--- pdfbox/branches/2.0/fontbox/src/main/java/org/apache/fontbox/cmap/CodespaceRange.java (original)
+++ pdfbox/branches/2.0/fontbox/src/main/java/org/apache/fontbox/cmap/CodespaceRange.java Fri Apr 10 15:38:35 2020
@@ -33,9 +33,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)