mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-28 14:52:24 +00:00
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…
x
Reference in New Issue
Block a user