Skip to content

Commit 7dcf897

Browse files
committed
PDFBOX-5660: fix parameter
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1922692 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7c32532 commit 7dcf897

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/src/main/java/org/apache/pdfbox/examples/util/PrintTextColors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public static void main(String[] args) throws IOException
9393
{
9494
PDFTextStripper stripper = new PrintTextColors();
9595
stripper.setSortByPosition(true);
96-
stripper.setStartPage(0);
96+
stripper.setStartPage(1);
9797
stripper.setEndPage(document.getNumberOfPages());
9898

9999
Writer dummy = new OutputStreamWriter(new ByteArrayOutputStream());

examples/src/main/java/org/apache/pdfbox/examples/util/PrintTextLocations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public static void main( String[] args ) throws IOException
6363
{
6464
PDFTextStripper stripper = new PrintTextLocations();
6565
stripper.setSortByPosition( true );
66-
stripper.setStartPage( 0 );
66+
stripper.setStartPage( 1 );
6767
stripper.setEndPage( document.getNumberOfPages() );
6868

6969
Writer dummy = new OutputStreamWriter(new ByteArrayOutputStream());

0 commit comments

Comments
 (0)