From 6240c11f225e68bab717ee0c188e10ac479ba035 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 15 Mar 2020 16:37:58 -0400 Subject: [PATCH] [LANG-1527] NumberUtils.createBigDecimal has a redundant argument check. --- src/changes/changes.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index b636c8827..778dfe80b 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -108,6 +108,7 @@ The type attribute can be add,update,fix,remove. Avoid unnecessary allocation in StringUtils.wrapIfMissing. #496. Internally use Validate.notNull(foo, ...) instead of Validate.isTrue(foo != null, ...). Add 1 and 0 in toBooleanObject(final String str) #502. + Remove an redundant argument check in NumberUtils #504.