Skip to content

Commit

Permalink
Fix #356
Browse files Browse the repository at this point in the history
  • Loading branch information
hhrutter committed Jul 19, 2021
1 parent b80c13b commit 64e3df6
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions pkg/pdfcpu/read.go
Original file line number Diff line number Diff line change
Expand Up @@ -790,12 +790,6 @@ func scanLine(s *bufio.Scanner) (s1 string, err error) {
}
}

// Remove comment.
i := strings.Index(s1, "%")
if i >= 0 {
s1 = s1[:i]
}

return s1, nil
}

Expand Down Expand Up @@ -2059,9 +2053,9 @@ func logStream(o Object) {
log.Read.Println("logStream: no stream content")
}

if o.IsPageContent {
//log.Read.Printf("content <%s>\n", StreamDict.Content)
}
// if o.IsPageContent {
// //log.Read.Printf("content <%s>\n", StreamDict.Content)
// }

case ObjectStreamDict:

Expand Down

0 comments on commit 64e3df6

Please sign in to comment.