Re: [compress] ZipFile and Duplicate Entries

2013-05-21 Thread sebb
On 21 May 2013 10:17, Stefan Bodewig wrote: > On 2013-05-20, sebb wrote: > >> On 20 May 2013 16:48, Stefan Bodewig wrote: > >>> I've for now fixed it in trunk by ignoring all but the last entry od the >>> same name seen while parsing the central directory. I've chosen to pick >>> the last since

Re: Creating CSVFormats (again :)

2013-05-21 Thread Gary Gregory
On Tue, May 21, 2013 at 2:52 PM, Benedikt Ritter wrote: > 2013/5/21 Emmanuel Bourg > > > Le 21/05/2013 17:47, Benedikt Ritter a écrit : > > > > > Well that still doesn't tell us, what your definition of a "real" > builder > > > is :-) The latest trunk contains a builder implementation with a flu

Re: Creating CSVFormats (again :)

2013-05-21 Thread Benedikt Ritter
2013/5/21 Emmanuel Bourg > Le 21/05/2013 17:47, Benedikt Ritter a écrit : > > > Well that still doesn't tell us, what your definition of a "real" builder > > is :-) The latest trunk contains a builder implementation with a fluent > > API. It has been criticized for being to verbose when creating

Re: [math] User Guide needs some love

2013-05-21 Thread Thomas Neidhart
On 01/15/2013 02:00 PM, Gilles Sadowski wrote: > On Tue, Jan 15, 2013 at 10:01:17AM +0100, Thomas Neidhart wrote: >> On Sun, Jan 13, 2013 at 8:28 PM, Phil Steitz wrote: >> >>> I just fixed a couple of errors in the User Guide. There are likely >>> lots more and some whole sections that need to be

[ANNOUNCE] Commons Logging version 1.1.3 released

2013-05-21 Thread Thomas Neidhart
Hello. The Apache Commons team is pleased to announce the release of commons-logging-1.1.3. Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. Source and binary distributions are available for download from the Apache Commons download site: ht

Re: Creating CSVFormats (again :)

2013-05-21 Thread Gary Gregory
On Tue, May 21, 2013 at 11:47 AM, Benedikt Ritter wrote: > 2013/5/21 Romain Manni-Bucau > > > The CSVConfig solution is better IMO. > > > > The issue with static imports is only an issue if the api is not fluent > > (delimiter, comment ...). If after one or two static imports (without * > ;) > >

Re: Creating CSVFormats (again :)

2013-05-21 Thread Romain Manni-Bucau
real builder meant fluent api for me. Current API is fine IMO, it is verbose but if you think so you quickly write your own format and that's fine. basically with a fluent builder you are 1/1 with the config so you can't be less verbose excepted using multi-param constructor/factories which is mor

Re: Creating CSVFormats (again :)

2013-05-21 Thread Emmanuel Bourg
Le 21/05/2013 17:47, Benedikt Ritter a écrit : > Well that still doesn't tell us, what your definition of a "real" builder > is :-) The latest trunk contains a builder implementation with a fluent > API. It has been criticized for being to verbose when creating new formats > from existing ones. Th

Re: Creating CSVFormats (again :)

2013-05-21 Thread Benedikt Ritter
2013/5/21 Romain Manni-Bucau > The CSVConfig solution is better IMO. > > The issue with static imports is only an issue if the api is not fluent > (delimiter, comment ...). If after one or two static imports (without * ;) > you get what i called a real builder (a fluent api) it is far easier to >

[math] NewtonRaphsonSolver

2013-05-21 Thread Thomas Neidhart
Hi, based on the question on the user-ml, I did an experiment with the NewtonRaphson solver, and I get some strange results, see below: @Test public void testSquare() { final UnivariateDifferentiableFunction d = new UnivariateDifferentiableFunction() { public double

Re: [compress] ZipFile and Duplicate Entries

2013-05-21 Thread Stefan Bodewig
On 2013-05-20, sebb wrote: > On 20 May 2013 16:48, Stefan Bodewig wrote: >> I've for now fixed it in trunk by ignoring all but the last entry od the >> same name seen while parsing the central directory. I've chosen to pick >> the last since this is what ZipFile used to do for duplicate entries