From 9388c5747f4a742d2de28ae6fc0d92f97efc6b32 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Mon, 20 Apr 2020 16:58:20 -0400 Subject: [PATCH] [LANG-1534] Replace some usages of the ternary operator with calls to Math.max() and Math.min() #512. --- src/changes/changes.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index c91fd1895..befdbf49b 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -53,6 +53,7 @@ The type attribute can be add,update,fix,remove. Simplify null checks in Triple.hashCode() using Objects.hashCode(). #516. Simplify some if statements in StringUtils. #521. Simplify a null check in the private replaceEach() method of StringUtils. #514. + Replace some usages of the ternary operator with calls to Math.max() and Math.min() #512.