Skip to content

Commit

Permalink
PDFBOX-5660: fix parameter
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1922692 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
THausherr committed Dec 26, 2024
1 parent 7c32532 commit 7dcf897
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static void main(String[] args) throws IOException
{
PDFTextStripper stripper = new PrintTextColors();
stripper.setSortByPosition(true);
stripper.setStartPage(0);
stripper.setStartPage(1);
stripper.setEndPage(document.getNumberOfPages());

Writer dummy = new OutputStreamWriter(new ByteArrayOutputStream());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static void main( String[] args ) throws IOException
{
PDFTextStripper stripper = new PrintTextLocations();
stripper.setSortByPosition( true );
stripper.setStartPage( 0 );
stripper.setStartPage( 1 );
stripper.setEndPage( document.getNumberOfPages() );

Writer dummy = new OutputStreamWriter(new ByteArrayOutputStream());
Expand Down

0 comments on commit 7dcf897

Please sign in to comment.