|
@@ -16,9 +16,6 @@ public class AtomicBooleanConverter extends AbstractConverter<AtomicBoolean> {
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
protected AtomicBoolean convertInternal(Object value) {
|
|
protected AtomicBoolean convertInternal(Object value) {
|
|
|
- if (boolean.class == value.getClass()) {
|
|
|
|
|
- return new AtomicBoolean((boolean) value);
|
|
|
|
|
- }
|
|
|
|
|
if (value instanceof Boolean) {
|
|
if (value instanceof Boolean) {
|
|
|
return new AtomicBoolean((Boolean) value);
|
|
return new AtomicBoolean((Boolean) value);
|
|
|
}
|
|
}
|