Skip to content

Commit 1b1b7f3

Browse files
committed
PDFBOX-5660: make it final
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1928291 13f79535-47bb-0310-9956-ffa450edef68
1 parent ce007d7 commit 1b1b7f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ protected FDFAnnotation(Element element) throws IOException
305305
}
306306
}
307307

308-
float[] parseRectangleAttributes(String rect, String errorMessage) throws IOException
308+
final float[] parseRectangleAttributes(String rect, String errorMessage) throws IOException
309309
{
310310
String[] rectValues = rect.split(",");
311311
if (rectValues.length != 4)
@@ -320,7 +320,7 @@ float[] parseRectangleAttributes(String rect, String errorMessage) throws IOExce
320320
return values;
321321
}
322322

323-
PDRectangle createRectangleFromAttributes(String rect, String errorMessage) throws IOException
323+
final PDRectangle createRectangleFromAttributes(String rect, String errorMessage) throws IOException
324324
{
325325
String[] rectValues = rect.split(",");
326326
if (rectValues.length != 4)

0 commit comments

Comments
 (0)