mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
Merge pull request #1631 from cal101/erefactor/v5-dev-project/6/jdt-UseUnboxingCleanUp
[cleanup] erefactor/EclipseJdt - Use Unboxing
This commit is contained in:
commit
597f8f2236
@ -299,7 +299,7 @@ public class FastDatePrinter extends AbstractDateBasic implements DatePrinter {
|
||||
} else if (obj instanceof Calendar) {
|
||||
return format((Calendar) obj);
|
||||
} else if (obj instanceof Long) {
|
||||
return format(((Long) obj).longValue());
|
||||
return format(((Long) obj));
|
||||
} else {
|
||||
throw new IllegalArgumentException("Unknown class: " + (obj == null ? "<null>" : obj.getClass().getName()));
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ public class MutableBool implements Comparable<MutableBool>, Mutable<Boolean>, S
|
||||
|
||||
@Override
|
||||
public void set(final Boolean value) {
|
||||
this.value = value.booleanValue();
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user