[g...@vmgump]: Project commons-jelly-tags-jaxme (in module commons-jelly) failed

2010-08-26 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-jelly-tags-jaxme has an issue affecting its community integration

[g...@vmgump]: Project commons-jelly-tags-xml-test (in module commons-jelly) failed

2010-08-26 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-jelly-tags-xml-test has an issue affecting its community integrat

[g...@vmgump]: Project commons-javaflow (in module commons-sandbox) failed

2010-08-26 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-javaflow has an issue affecting its community integration. This is

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

2010-08-26 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

[g...@vmgump]: Project commons-jelly-tags-validate (in module commons-jelly) failed

2010-08-26 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-jelly-tags-validate has an issue affecting its community integrat

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

2010-08-26 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

Re: svn commit: r989543 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/FunctionEvaluationException.java

2010-08-26 Thread Rahul Akolkar
On Thu, Aug 26, 2010 at 6:37 PM, Gilles Sadowski wrote: > >> > MATH-410 >> > Wrong variable ("argument" instead of "arguments"). >> > >> > Modified: >> >     >> > commons/proper/math/trunk/src/main/java/org/apache/commons/math/FunctionEvaluationException.java >> >> Could this be also put in the n

Re: svn commit: r989543 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/FunctionEvaluationException.java

2010-08-26 Thread Gilles Sadowski
> > MATH-410 > > Wrong variable ("argument" instead of "arguments"). > > > > Modified: > > > > commons/proper/math/trunk/src/main/java/org/apache/commons/math/FunctionEvaluationException.java > > Could this be also put in the new MATH_2_X branch ? Certainly, but I don't know how to do it.

Re: [scxml-js] working toward a release

2010-08-26 Thread Rahul Akolkar
On Thu, Aug 26, 2010 at 4:52 PM, Jacob Beard wrote: > Hi, > > I've brought up a question on the maven list which I was wondering if others > could weigh on. Basically, the question is what is the best way to deal with > JavaScript library dependencies for which no Maven repository exists. One > pe

Re: [scxml-js] working toward a release

2010-08-26 Thread Jacob Beard
Hi, I've brought up a question on the maven list which I was wondering if others could weigh on. Basically, the question is what is the best way to deal with JavaScript library dependencies for which no Maven repository exists. One person has encouraged me to set up a Maven repository on my p

Re: svn commit: r989543 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/FunctionEvaluationException.java

2010-08-26 Thread Luc Maisonobe
Le 26/08/2010 10:59, er...@apache.org a écrit : > Author: erans > Date: Thu Aug 26 08:59:33 2010 > New Revision: 989543 > > URL: http://svn.apache.org/viewvc?rev=989543&view=rev > Log: > MATH-410 > Wrong variable ("argument" instead of "arguments"). > > Modified: > > commons/proper/math/trun

Re: svn commit: r989199 - in /commons/proper/lang/trunk/src: main/java/org/apache/commons/lang3/SerializationUtils.java test/java/org/apache/commons/lang3/SerializationUtilsTest.java

2010-08-26 Thread James Carman
On Thu, Aug 26, 2010 at 6:48 AM, Stephen Colebourne wrote: > I add this "auto-cast" behaviour to some of my classes too. Its a > useful technique to handle annoying cases. However, the alternative: >  Person p = SerializableUtils.deserialize(Person.class, bytes); > is more widely used. > But, usi

Re: svn commit: r989199 - in /commons/proper/lang/trunk/src: main/java/org/apache/commons/lang3/SerializationUtils.java test/java/org/apache/commons/lang3/SerializationUtilsTest.java

2010-08-26 Thread Stephen Colebourne
On 26 August 2010 11:29, James Carman wrote: > This way, you could do: > > Person p = SerializableUtils.deserialize(bytes); > > No casting!  Now, if the bytes don't represent a Person object, then > you'll get a ClassCastException, but that's exactly the same thing > that would happen if you did t

Re: svn commit: r989199 - in /commons/proper/lang/trunk/src: main/java/org/apache/commons/lang3/SerializationUtils.java test/java/org/apache/commons/lang3/SerializationUtilsTest.java

2010-08-26 Thread James Carman
On Thu, Aug 26, 2010 at 5:04 AM, Henri Yandell wrote: > > I wonder if this could be a findbugs/checkstyle/pmd rule? > Why use findbugs for something like this when it's completely obvious why it's okay? When you serialize an object and then deserialize it, you can be pretty sure you're going to

Re: svn commit: r989199 - in /commons/proper/lang/trunk/src: main/java/org/apache/commons/lang3/SerializationUtils.java test/java/org/apache/commons/lang3/SerializationUtilsTest.java

2010-08-26 Thread Henri Yandell
On Wed, Aug 25, 2010 at 10:46 PM, sebb wrote: > On 25 August 2010 17:15,   wrote: >> Author: mbenson >> Date: Wed Aug 25 16:15:44 2010 >> New Revision: 989199 >> >> URL: http://svn.apache.org/viewvc?rev=989199&view=rev >> Log: >> make SerializationUtils.clone() type-safe >> >> Modified: >>     >>