Skip to content

Commit 65d98d1

Browse files
committed
PDFBOX-5660: fix typo, as suggested by Valery Bokov; closes #337
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1929768 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4628de1 commit 65d98d1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf/FDFAnnotationPolyline.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ private void initStyles(Element element)
122122
}
123123

124124
/**
125-
* This will set the coordinates of the the vertices.
125+
* This will set the coordinates of the vertices.
126126
*
127127
* @param vertices array of floats [x1, y1, x2, y2, ...] vertex coordinates in default user space.
128128
*/
@@ -132,7 +132,7 @@ public void setVertices(float[] vertices)
132132
}
133133

134134
/**
135-
* This will get the coordinates of the the vertices.
135+
* This will get the coordinates of the vertices.
136136
*
137137
* @return array of floats [x1, y1, x2, y2, ...] vertex coordinates in default user space.
138138
*/

pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/optionalcontent/PDOptionalContentProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ private COSArray getOCGs()
129129
}
130130

131131
/**
132-
* Return the the /D dictionary.
132+
* Return the /D dictionary.
133133
*
134134
* @return the /D dictionary, never null.
135135
*/

pdfbox/src/test/java/org/apache/pdfbox/cos/TestCOSStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ void testCompressedStream2Decode() throws IOException
143143
}
144144

145145
/**
146-
* Tests tests that encoding is done correctly even if the the stream is closed twice.
146+
* Tests tests that encoding is done correctly even if the stream is closed twice.
147147
* Closeable.close() allows streams to be closed multiple times. The second and subsequent
148148
* close() calls should have no effect.
149149
*

pdfbox/src/test/java/org/apache/pdfbox/pdmodel/interactive/form/PDAcroFormFromAnnotsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ void testFromAnnots3891CreateFields() throws IOException, URISyntaxException
224224
PDAcroForm acroForm = catalog.getAcroForm(new CreateFieldsFixup(testPdf));
225225
assertEquals(numFormFieldsByAcrobat, acroForm.getFields().size(), "After rebuild there shall be " + numFormFieldsByAcrobat + " fields");
226226

227-
// the the fields found are contained in the map
227+
// the fields found are contained in the map
228228
for (PDField field : acroForm.getFieldTree())
229229
{
230230
assertNotNull(fieldsByName.get(field.getFullyQualifiedName()));

0 commit comments

Comments
 (0)