Merge pull request #1631 from cal101/erefactor/v5-dev-project/6/jdt-UseUnboxingCleanUp

[cleanup] erefactor/EclipseJdt - Use Unboxing
This commit is contained in:
Golden Looly 2021-06-07 02:00:54 +08:00 committed by GitHub
commit 597f8f2236
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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()));
}

View File

@ -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;
}
// -----------------------------------------------------------------------