Re: [commons-math] branch master updated: Add "checkFinite" utility method.

2023-01-05 Thread Gilles Sadowski
Le ven. 6 janv. 2023 à 02:18, Alex Herbert a écrit : > > Note there is an isFinite method. > > if (!Double.isFinite(x)) { > ... > > The isFinite method is a JVM intrinsic method in JDK 20. It was added > in JDK 8 so can be used in [math]. Thanks. > > PMD rules would also change this to a forEach

Re: [commons-math] branch master updated: Add "checkFinite" utility method.

2023-01-05 Thread Alex Herbert
Note there is an isFinite method. if (!Double.isFinite(x)) { ... The isFinite method is a JVM intrinsic method in JDK 20. It was added in JDK 8 so can be used in [math]. PMD rules would also change this to a forEach loop: > +for (double x : value) { > +if (!Double.isFinite(x

Re: [apache/commons-dbutils] Bump spotbugs-maven-plugin from 4.4.2 to 4.7.3.0 (PR #169)

2023-01-05 Thread Gary Gregory
-1 Please revert and stop merging PRs that break the build. Run a local build when you don't know when in doubt. Gary On Thu, Jan 5, 2023, 10:25 Carl Hall wrote: > Merged #169 into > master. > > — > Reply to this email directly, view it on G

Re: Status of 'testing' component ?

2023-01-05 Thread Gary Gregory
I started building that component a long time ago to hold Junit 3, and 4 utilities like Junit 4 rules. But, as you can see, I never got very far, due to time constraints. Gary On Thu, Jan 5, 2023, 07:31 sebb wrote: > There is a testing component at > > https://github.com/apache/commons-testing

Status of 'testing' component ?

2023-01-05 Thread sebb
There is a testing component at https://github.com/apache/commons-testing Is that in use? Sebb - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org