Re: [numbers] Redundant methods in ArithmeticUtils

2019-06-11 Thread Gilles Sadowski
Hello. Le mar. 11 juin 2019 à 19:26, Eric Barnhill a écrit : > > On Tue, Jun 11, 2019 at 9:52 AM Heinrich Bohne > wrote: > > > The class ArithmeticUtils in the commons-numbers-core module contains > > several methods where, since Java 8, equivalent methods in > > java.lang.Math exist. These meth

Re: [ALL] Issues with Git repos: bad HEADs and unexpected refs - need Git guru

2019-06-11 Thread Gary Gregory
The trunk branches should go away IMO. Is there any reason not to fix these? Gary On Sun, Jun 9, 2019, 09:54 sebb wrote: > Ping - any comment on the unexpected HEAD references? > Should they be changed? > > On Mon, 3 Jun 2019 at 15:15, Gary Gregory wrote: > > > > Did we git guru ourselves out

Re: Class name H1Config

2019-06-11 Thread Gary Gregory
Now that we are going with H2 as a prefix instead of Http2 (PR comming today), I think we can keep this H1 prefixed class as is and change Http1 prefixes to H1. Gary On Fri, Jun 7, 2019, 09:15 Gary Gregory wrote: > Hi All: > > I find the abbreviation of "HTTP" to "H" in "H1Config" pretty odd. >

Re: [numbers] Redundant methods in ArithmeticUtils

2019-06-11 Thread Eric Barnhill
On Tue, Jun 11, 2019 at 9:52 AM Heinrich Bohne wrote: > The class ArithmeticUtils in the commons-numbers-core module contains > several methods where, since Java 8, equivalent methods in > java.lang.Math exist. These methods are the following: > > addAndCheck(int, int) > addAndCheck(long, long) >

[numbers] Redundant methods in ArithmeticUtils

2019-06-11 Thread Heinrich Bohne
The class ArithmeticUtils in the commons-numbers-core module contains several methods where, since Java 8, equivalent methods in java.lang.Math exist. These methods are the following: addAndCheck(int, int) addAndCheck(long, long) mulAndCheck(int, int) mulAndCheck(long, long) subAndCheck(int, int)