You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/04/20 20:58:39 UTC

[commons-lang] branch master updated: [LANG-1534] Replace some usages of the ternary operator with calls to Math.max() and Math.min() #512.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 9388c57  [LANG-1534] Replace some usages of the ternary operator with calls to Math.max() and Math.min() #512.
     new d8ebaf9  Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.git
9388c57 is described below

commit 9388c5747f4a742d2de28ae6fc0d92f97efc6b32
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Apr 20 16:58:20 2020 -0400

    [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 c91fd18..befdbf4 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -53,6 +53,7 @@ The <action> type attribute can be add,update,fix,remove.
     <action                   type="update" dev="ggregory" due-to="Isira Seneviratne">Simplify null checks in Triple.hashCode() using Objects.hashCode(). #516.</action>
     <action                   type="update" dev="ggregory" due-to="Isira Seneviratne">Simplify some if statements in StringUtils. #521.</action>
     <action issue="LANG-1537" type="update" dev="ggregory" due-to="Isira Seneviratne">Simplify a null check in the private replaceEach() method of StringUtils. #514.</action>
+    <action issue="LANG-1534" type="update" dev="ggregory" due-to="Isira Seneviratne">Replace some usages of the ternary operator with calls to Math.max() and Math.min() #512.</action>
   </release>
 
   <release version="3.10" date="2020-03-22" description="New features and bug fixes. Requires Java 8, supports Java 9, 10, 11.">