[continuum] BUILD FAILURE: Apache Commons JCS - Apache Commons (Group (shared) Maven 3 Build Definition (Java 1.6))

2014-06-20 Thread Apache Continuum
Online report : https://continuum-ci.apache.org/continuum/buildResult.action?buildId=32789&projectId=286 Build statistics: State: Failed Previous State: Failed Started at: Sat 21 Jun 2014 00:20:50 + Finished at: Sat 21 Jun 2014 00:24:38 + Total time: 3m 47s Build Trigger: Sche

[continuum] BUILD FAILURE: Apache Commons JCS - Apache Commons (Group (shared) Maven 3 Build Definition (Java 1.6))

2014-06-20 Thread Apache Continuum
Online report : https://continuum-ci.apache.org/continuum/buildResult.action?buildId=32786&projectId=286 Build statistics: State: Failed Previous State: Failed Started at: Fri 20 Jun 2014 23:58:08 + Finished at: Sat 21 Jun 2014 00:04:06 + Total time: 5m 58s Build Trigger: Forc

[continuum] BUILD FAILURE: Apache Commons JCS - Apache Commons (Maven 3 Build Definition (Java 1.7) Test only)

2014-06-20 Thread Apache Continuum
Online report : https://continuum-ci.apache.org/continuum/buildResult.action?buildId=32785&projectId=286 Build statistics: State: Failed Previous State: Failed Started at: Fri 20 Jun 2014 23:42:13 + Finished at: Fri 20 Jun 2014 23:45:58 + Total time: 3m 45s Build Trigger: Forc

Re: [Math] Supported Java versions

2014-06-20 Thread Phil Steitz
On 6/20/14, 9:56 AM, Thomas Neidhart wrote: > On 06/20/2014 05:30 PM, Gilles wrote: >> On Fri, 20 Jun 2014 16:57:41 +0200, Thomas Neidhart wrote: >>> On 20 Jun 2014 16:37, "Gilles" wrote: On Fri, 20 Jun 2014 16:18:08 +0200, Thomas Neidhart wrote: > Java 5 is already eol. Anybody still usi

Re: [Math] Supported Java versions

2014-06-20 Thread Thomas Neidhart
On 06/20/2014 05:30 PM, Gilles wrote: > On Fri, 20 Jun 2014 16:57:41 +0200, Thomas Neidhart wrote: >> On 20 Jun 2014 16:37, "Gilles" wrote: >>> >>> On Fri, 20 Jun 2014 16:18:08 +0200, Thomas Neidhart wrote: Java 5 is already eol. Anybody still using it is certainly in maintenance >>

Re: [Math] Supported Java versions

2014-06-20 Thread venkatesha murthy
On Fri, Jun 20, 2014 at 9:00 PM, Gilles wrote: > On Fri, 20 Jun 2014 16:57:41 +0200, Thomas Neidhart wrote: >> >> On 20 Jun 2014 16:37, "Gilles" wrote: >>> >>> >>> On Fri, 20 Jun 2014 16:18:08 +0200, Thomas Neidhart wrote: Java 5 is already eol. Anybody still using it is certainly

Re: [Math] Supported Java versions

2014-06-20 Thread Gilles
On Fri, 20 Jun 2014 16:57:41 +0200, Thomas Neidhart wrote: On 20 Jun 2014 16:37, "Gilles" wrote: On Fri, 20 Jun 2014 16:18:08 +0200, Thomas Neidhart wrote: Java 5 is already eol. Anybody still using it is certainly in maintenance mode thus adding now a feature that is available in java 6 do

Re: [Math] Supported Java versions (Was: svn commit: r1604172 - ...)

2014-06-20 Thread Thomas Neidhart
On 20 Jun 2014 16:37, "Gilles" wrote: > > On Fri, 20 Jun 2014 16:18:08 +0200, Thomas Neidhart wrote: >> >> Java 5 is already eol. Anybody still using it is certainly in maintenance >> mode thus adding now a feature that is available in java 6 does not make >> any sense. > > > This a strong stateme

[Math] Supported Java versions (Was: svn commit: r1604172 - ...)

2014-06-20 Thread Gilles
On Fri, 20 Jun 2014 16:18:08 +0200, Thomas Neidhart wrote: Java 5 is already eol. Anybody still using it is certainly in maintenance mode thus adding now a feature that is available in java 6 does not make any sense. This a strong statement in a forum where it has _always_ been indicated that

Re: svn commit: r1604172 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/util/MathArrays.java test/java/org/apache/commons/math3/util/MathArraysTest.java

2014-06-20 Thread Thomas Neidhart
Java 5 is already eol. Anybody still using it is certainly in maintenance mode thus adding now a feature that is available in java 6 does not make any sense. On 20 Jun 2014 15:38, wrote: > Author: erans > Date: Fri Jun 20 13:37:42 2014 > New Revision: 1604172 > > URL: http://svn.apache.org/r16041

Re: [GitHub] commons-lang pull request: Reimplemented normalize space

2014-06-20 Thread Anshul Zunke
Hi I have some doubt about your patch. 1. If we consider that WHITESPACE_PATTERN will be compiled only once during the class load since its a static variable private static final Pattern WHITESPACE_PATTERN = Pattern.compile("(?: |\\u00A0|\\s|[\\s&&[^ ]])\\s*"); Then i doubt the code will tak

[GitHub] commons-lang pull request: Reimplemented normalize space

2014-06-20 Thread librucha
GitHub user librucha opened a pull request: https://github.com/apache/commons-lang/pull/27 Reimplemented normalize space Hi. I reimplemented normalize space method of String utils, because regexp is much more rich operation than array traversing and I use this normalization oft