krasa / krasa-jaxb-tools

XJC / JAXB plugin for generation of Bean Validation Annotations (JSR-303) and replacing primitive types
Apache License 2.0
61 stars 47 forks source link

Simplyfied logic, once a string always a string. #28

Closed ST-DDT closed 10 years ago

ST-DDT commented 10 years ago

The issue No real issue, but if the field is a string once, it will always be a String so checking every time in the loop has no use.

The Fix Moves the "is String" check in front of the loop, to avoid multiple checks with the same result.