Cleanup unnecessary unboxing
Unboxing is unnecessary under Java 5 and newer, and can be safely removed.
This commit is contained in:
committed by
Josh Cummings
parent
2306d987e9
commit
2056834432
+1
-1
@@ -66,7 +66,7 @@ public class PasswordEncoderParser {
|
||||
boolean useBase64 = false;
|
||||
|
||||
if (StringUtils.hasText(element.getAttribute(ATT_BASE_64))) {
|
||||
useBase64 = Boolean.valueOf(element.getAttribute(ATT_BASE_64)).booleanValue();
|
||||
useBase64 = Boolean.valueOf(element.getAttribute(ATT_BASE_64));
|
||||
}
|
||||
|
||||
String ref = element.getAttribute(ATT_REF);
|
||||
|
||||
Reference in New Issue
Block a user