valerybokov opened a new pull request, #381: URL: https://github.com/apache/pdfbox/pull/381
The normalize method returns an instance of the LinkedList. We use that list inside a writeLine method. The writeLine method uses the list for a loop. The previous version of the loop was slow for a list because each element was retrieved through the get method. So, there are two ways to fix it: 1 use the foreach statement instead of the for statement 2 use ArrayList instead of LinkedList -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
