[GUMP@vmgump]: Project commons-scxml-test (in module apache-commons) failed

2012-09-05 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-scxml-test has an issue affecting its community integration. This

[GUMP@vmgump]: Project commons-dbutils (in module apache-commons) failed

2012-09-05 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-dbutils has an issue affecting its community integration. This iss

[GUMP@vmgump]: Project commons-proxy-test (in module apache-commons) failed

2012-09-05 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-proxy-test has an issue affecting its community integration. This

Re: [Math] About "NullArgumentException" (Was: svn commit: r1381284 - in /commons/proper/math/trunk/...)

2012-09-05 Thread Sébastien Brisard
Hi Gilles, 2012/9/6 sebb : > On 5 September 2012 22:46, Gilles Sadowski > wrote: >> On Wed, Sep 05, 2012 at 06:30:08PM -, l...@apache.org wrote: >>> Author: luc >>> Date: Wed Sep 5 18:30:08 2012 >>> New Revision: 1381284 >>> >>> URL: http://svn.apache.org/viewvc?rev=1381284&view=rev >>> Log

[GUMP@vmgump]: Project commons-chain2 (in module apache-commons) failed

2012-09-05 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-chain2 has an issue affecting its community integration. This issu

[GUMP@vmgump]: Project commons-digester3 (in module apache-commons) failed

2012-09-05 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-digester3 has an issue affecting its community integration. This i

[GUMP@vmgump]: Project commons-exec-test (in module apache-commons) failed

2012-09-05 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-exec-test has an issue affecting its community integration. This i

[GUMP@vmgump]: Project commons-dbcp2 (in module apache-commons) failed

2012-09-05 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-dbcp2 has an issue affecting its community integration. This issue

[GUMP@vmgump]: Project commons-dbcp (in module commons-dbcp-1.x) failed

2012-09-05 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-dbcp has an issue affecting its community integration. This issue

Re: [math] UnexpectedNegativeIntegerException

2012-09-05 Thread Gilles Sadowski
On Wed, Sep 05, 2012 at 08:16:34PM +0200, Luc Maisonobe wrote: > Le 05/09/2012 19:09, Ole Ersoy a écrit : > > Hi Gilles, > > > > On 09/04/2012 06:48 PM, Gilles Sadowski wrote: > >> Hello. > >> > >> There are ideas that sound good we experiment with them within a limited > >> framework (like a cour

Re: [Math] About "NullArgumentException" (Was: svn commit: r1381284 - in /commons/proper/math/trunk/...)

2012-09-05 Thread sebb
On 5 September 2012 22:46, Gilles Sadowski wrote: > On Wed, Sep 05, 2012 at 06:30:08PM -, l...@apache.org wrote: >> Author: luc >> Date: Wed Sep 5 18:30:08 2012 >> New Revision: 1381284 >> >> URL: http://svn.apache.org/viewvc?rev=1381284&view=rev >> Log: >> Added throw declarations for packag

Re: svn commit: r1381206 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ArithmeticUtils.java

2012-09-05 Thread Gilles Sadowski
On Wed, Sep 05, 2012 at 09:25:08AM -0700, Phil Steitz wrote: > On 9/5/12 7:46 AM, er...@apache.org wrote: > > Author: erans > > Date: Wed Sep 5 14:46:59 2012 > > New Revision: 1381206 > > > > URL: http://svn.apache.org/viewvc?rev=1381206&view=rev > > Log: > > MATH-841 > > Performance improvement i

[Math] About "NullArgumentException" (Was: svn commit: r1381284 - in /commons/proper/math/trunk/...)

2012-09-05 Thread Gilles Sadowski
On Wed, Sep 05, 2012 at 06:30:08PM -, l...@apache.org wrote: > Author: luc > Date: Wed Sep 5 18:30:08 2012 > New Revision: 1381284 > > URL: http://svn.apache.org/viewvc?rev=1381284&view=rev > Log: > Added throw declarations for package complex. > > Modified: > > commons/proper/math/trun

Re: [all] FindBugs' Switch statement found in class.method where default case is missing

2012-09-05 Thread Gary Gregory
On Wed, Sep 5, 2012 at 4:02 PM, sebb wrote: > Seems to me there are several reasons why the default case may have > been omitted: > > 1) It was accidentally omitted. > In this case, add the required clause. > > 2) It was omitted because nothing needs to be done. > In this case, this needs to be d

Re: [all] FindBugs' Switch statement found in class.method where default case is missing

2012-09-05 Thread Liviu Tudor
I understand your point about the code having to be descriptive about why the clause is not present, which is why I suggested using checkstyle, as it allows for configuration of a comment which skips that check. However, IMHO your point is valid about having an assertion/error such that future cha

Re: [all] FindBugs' Switch statement found in class.method where default case is missing

2012-09-05 Thread sebb
Seems to me there are several reasons why the default case may have been omitted: 1) It was accidentally omitted. In this case, add the required clause. 2) It was omitted because nothing needs to be done. In this case, this needs to be documented; the easiest way is to add: default: break; /

Re: [math] UnexpectedNegativeIntegerException

2012-09-05 Thread Luc Maisonobe
Le 05/09/2012 19:09, Ole Ersoy a écrit : > Hi Gilles, > > On 09/04/2012 06:48 PM, Gilles Sadowski wrote: >> Hello. >> >> There are ideas that sound good we experiment with them within a limited >> framework (like a course on programming, for example); and then become a >> nightmare when you find y

Re: [math] UnexpectedNegativeIntegerException

2012-09-05 Thread Ole Ersoy
Hi Gilles, On 09/04/2012 06:48 PM, Gilles Sadowski wrote: Hello. There are ideas that sound good we experiment with them within a limited framework (like a course on programming, for example); and then become a nightmare when you find yourself constantly trying to get around them. I mean that a

Re: svn commit: r1381206 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ArithmeticUtils.java

2012-09-05 Thread Phil Steitz
On 9/5/12 7:46 AM, er...@apache.org wrote: > Author: erans > Date: Wed Sep 5 14:46:59 2012 > New Revision: 1381206 > > URL: http://svn.apache.org/viewvc?rev=1381206&view=rev > Log: > MATH-841 > Performance improvement in method "gcd(int, int)" (~2 to 4 times faster than > the previous implementati

Re: [math] Deprecate, then remove OpenMapRealVectors?

2012-09-05 Thread Phil Steitz
On 9/3/12 8:17 PM, Sébastien Brisard wrote: > Hi, > now the summer is over, it is time to revive this thread [1]. It is > copied to both user@ and dev@ mailing lists. > > Recently, many problems have been found out with class > OpenMapRealVector [2], [3], to the point that we are considering the >