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 2018/03/03 15:37:53 UTC

svn commit: r1825774 - in /pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox: filter/ pdmodel/fdf/ pdmodel/graphics/state/ pdmodel/interactive/action/

Author: tilman
Date: Sat Mar  3 15:37:52 2018
New Revision: 1825774

URL: http://svn.apache.org/viewvc?rev=1825774&view=rev
Log:
PDFBOX-4071: fix typo

Modified:
    pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/filter/DecodeResult.java
    pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationFreeText.java
    pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationPolygon.java
    pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationPolyline.java
    pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/state/PDGraphicsState.java
    pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/action/PDURIDictionary.java

Modified: pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/filter/DecodeResult.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/filter/DecodeResult.java?rev=1825774&r1=1825773&r2=1825774&view=diff
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/filter/DecodeResult.java (original)
+++ pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/filter/DecodeResult.java Sat Mar  3 15:37:52 2018
@@ -55,7 +55,7 @@ public final class DecodeResult
 
     /**
      * Returns the embedded JPX color space, if any.
-     * @return the the embedded JPX color space, or null if there is none.
+     * @return the embedded JPX color space, or null if there is none.
      */
     public PDJPXColorSpace getJPXColorSpace()
     {

Modified: pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationFreeText.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationFreeText.java?rev=1825774&r1=1825773&r2=1825774&view=diff
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationFreeText.java (original)
+++ pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationFreeText.java Sat Mar  3 15:37:52 2018
@@ -149,7 +149,7 @@ public class FDFAnnotationFreeText exten
     }
 
     /**
-     * This will get the coordinates of the the callout line.
+     * This will get the coordinates of the callout line.
      *
      * @return An array of four or six numbers specifying a callout line attached to the free text
      * annotation. Six numbers [ x1 y1 x2 y2 x3 y3 ] represent the starting, knee point, and ending

Modified: pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationPolygon.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationPolygon.java?rev=1825774&r1=1825773&r2=1825774&view=diff
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationPolygon.java (original)
+++ pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationPolygon.java Sat Mar  3 15:37:52 2018
@@ -109,7 +109,7 @@ public class FDFAnnotationPolygon extend
     }
 
     /**
-     * This will set the coordinates of the the vertices.
+     * This will set the coordinates of the vertices.
      *
      * @param vertices array of floats [x1, y1, x2, y2, ...] vertex coordinates in default user space.
      */
@@ -121,7 +121,7 @@ public class FDFAnnotationPolygon extend
     }
 
     /**
-     * This will get the coordinates of the the vertices.
+     * This will get the coordinates of the vertices.
      *
      * @return array of floats [x1, y1, x2, y2, ...] vertex coordinates in default user space.
      */

Modified: pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationPolyline.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationPolyline.java?rev=1825774&r1=1825773&r2=1825774&view=diff
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationPolyline.java (original)
+++ pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationPolyline.java Sat Mar  3 15:37:52 2018
@@ -126,7 +126,7 @@ public class FDFAnnotationPolyline exten
     }
 
     /**
-     * This will set the coordinates of the the vertices.
+     * This will set the coordinates of the vertices.
      *
      * @param vertices array of floats [x1, y1, x2, y2, ...] vertex coordinates in default user space.
      */
@@ -138,7 +138,7 @@ public class FDFAnnotationPolyline exten
     }
 
     /**
-     * This will get the coordinates of the the vertices.
+     * This will get the coordinates of the vertices.
      *
      * @return array of floats [x1, y1, x2, y2, ...] vertex coordinates in default user space.
      */

Modified: pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/state/PDGraphicsState.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/state/PDGraphicsState.java?rev=1825774&r1=1825773&r2=1825774&view=diff
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/state/PDGraphicsState.java (original)
+++ pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/state/PDGraphicsState.java Sat Mar  3 15:37:52 2018
@@ -559,7 +559,7 @@ public class PDGraphicsState implements
     }
 
     /**
-     * Sets the the stroking color space.
+     * Sets the stroking color space.
      *
      * @param colorSpace The new stroking color space.
      */
@@ -579,7 +579,7 @@ public class PDGraphicsState implements
     }
 
     /**
-     * Sets the the non-stroking color space.
+     * Sets the non-stroking color space.
      *
      * @param colorSpace The new non-stroking color space.
      */

Modified: pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/action/PDURIDictionary.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/action/PDURIDictionary.java?rev=1825774&r1=1825773&r2=1825774&view=diff
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/action/PDURIDictionary.java (original)
+++ pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/action/PDURIDictionary.java Sat Mar  3 15:37:52 2018
@@ -80,7 +80,7 @@ public class PDURIDictionary implements
      * The use of this entry is parallel to that of the body element <BASE>, as described
      * in the HTML 4.01 Specification.
      *
-     * @param base The the base URI to be used.
+     * @param base The base URI to be used.
      */
     public void setBase(String base)
     {