turbanoff opened a new pull request, #67: URL: https://github.com/apache/santuario-xml-security-java/pull/67
There are few places in code where manual loop is used with Iterator to iterate over Collection. Instead of manual cycles it's preferred to use enhanced-for cycle instead: it's less verbose, makes code easier to read and it's less error-prone. It doesn't have any performance impact: java compiler generates similar code when compiling enhanced-for cycle. -- 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]
