From a21cdb512100349b4021effc9cdb65690c5d1684 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sat, 13 Jun 2020 10:58:39 -0400 Subject: [PATCH] [LANG-1564] Use Collections.singletonList insteadof Arrays.asList when there be only one element. #549. --- src/changes/changes.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 13cf6d235..75cf342bb 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -65,7 +65,7 @@ The type attribute can be add,update,fix,remove. Optimize ArrayUtils::isArrayIndexValid method. #551. Use List.sort instead of Collection.sort #546. Use StandardCharsets.UTF_8 #548. - Use Math.max and min #547. + [LANG-1564] use Collections.singletonList insteadof Arrays.asList when there be only one element. #549.