You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ti...@apache.org on 2021/05/03 06:11:24 UTC

svn commit: r1889440 - /pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cff/CFFFont.java

Author: tilman
Date: Mon May  3 06:11:24 2021
New Revision: 1889440

URL: http://svn.apache.org/viewvc?rev=1889440&view=rev
Log:
PDFBOX-4892: improve comments, as suggested by valerybokov

Modified:
    pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cff/CFFFont.java

Modified: pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cff/CFFFont.java
URL: http://svn.apache.org/viewvc/pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cff/CFFFont.java?rev=1889440&r1=1889439&r2=1889440&view=diff
==============================================================================
--- pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cff/CFFFont.java (original)
+++ pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/cff/CFFFont.java Mon May  3 06:11:24 2021
@@ -127,7 +127,7 @@ public abstract class CFFFont implements
     /**
      * Returns the character strings dictionary. For expert users only.
      *
-     * @return the dictionary
+     * @return the character strings dictionary as a list of byte arrays.
      */
     public final List<byte[]> getCharStringBytes()
     {
@@ -161,17 +161,17 @@ public abstract class CFFFont implements
     /**
      * Sets the global subroutine index data.
      * 
-     * @param globalSubrIndexValue an list containing the global subroutines
+     * @param globalSubrIndexValue a list of the global subroutines.
      */
     void setGlobalSubrIndex(byte[][] globalSubrIndexValue)
     {
         globalSubrIndex = globalSubrIndexValue;
     }
 
-    /**
-     * Returns the list containing the global subroutine .
+     /**
+     * Returns the list containing the global subroutines.
      * 
-     * @return the dictionary
+     * @return a list of the global subroutines.
      */
     public List<byte[]> getGlobalSubrIndex()
     {