Author: tilman
Date: Tue Aug 29 17:32:39 2023
New Revision: 1911992

URL: http://svn.apache.org/viewvc?rev=1911992&view=rev
Log:
PDFBOX-5665: percent isn't part of an operator

Modified:
    
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/pdfparser/PDFStreamParser.java

Modified: 
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/pdfparser/PDFStreamParser.java
URL: 
http://svn.apache.org/viewvc/pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/pdfparser/PDFStreamParser.java?rev=1911992&r1=1911991&r2=1911992&view=diff
==============================================================================
--- 
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/pdfparser/PDFStreamParser.java
 (original)
+++ 
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/pdfparser/PDFStreamParser.java
 Tue Aug 29 17:32:39 2023
@@ -406,6 +406,7 @@ public class PDFStreamParser extends Bas
             nextChar != '<' &&
             nextChar != '(' &&
             nextChar != '/' &&
+            nextChar != '%' &&
             (nextChar < '0' ||
              nextChar > '9' ) )
         {


Reply via email to