xzel23 opened a new pull request, #158:
URL: https://github.com/apache/pdfbox/pull/158

   - in some places, unnecessary explicit boxing/unboxing was done
   - I replaced some XXX.valueOf(String) calls with the corresponding 
XXX.parseXXX(String) calls. XXX.valueOf() always returns a boxed value, but 
when that is assigned to a primitive, the boxing/unboxing is needless.
   - added generics information or the diamond operator ('<>') so that IDEs 
keep silent about using raw types
   - replaced explicit generic parameters with diamond operator where applicable
   - changed String.indexOf(...)==0 with String.contains(...) in one place


-- 
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]

Reply via email to