Java 5: Unnecessary Boxing
This commit is contained in:
parent
578d628774
commit
91c846756e
|
@ -66,7 +66,7 @@ public class PasswordEncoderParser {
|
||||||
boolean useBase64 = false;
|
boolean useBase64 = false;
|
||||||
|
|
||||||
if (StringUtils.hasText(element.getAttribute(ATT_BASE_64))) {
|
if (StringUtils.hasText(element.getAttribute(ATT_BASE_64))) {
|
||||||
useBase64 = Boolean.valueOf(element.getAttribute(ATT_BASE_64));
|
useBase64 = Boolean.parseBoolean(element.getAttribute(ATT_BASE_64));
|
||||||
}
|
}
|
||||||
|
|
||||||
String ref = element.getAttribute(ATT_REF);
|
String ref = element.getAttribute(ATT_REF);
|
||||||
|
|
Loading…
Reference in New Issue