Re: log4j-async and log4j-core

2013-04-11 Thread Benedikt Ritter
2013/4/12 Gary Gregory > Why not more log4j-async into the core? > Don't know... you should better ask the log4j folks ;-) Benedikt > > Gary > > -- > E-Mail: garydgreg...@gmail.com | ggreg...@apache.org > Java Persistence with Hibernate, Second Edition< > http://www.manning.com/bauer3/> > JUn

Re: svn commit: r1466591 - /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java

2013-04-11 Thread Benedikt Ritter
I don't prefer one or the other. Both styles have their pros and cons. I just don't want to mix them. In JUnit 3 you would write something like: public void testMyMethodNull() throws Exception { try { bean.myMethod(null); fail("Passing null to myMethod did not throw exception!");

log4j-async and log4j-core

2013-04-11 Thread Gary Gregory
Why not more log4j-async into the core? Gary -- E-Mail: garydgreg...@gmail.com | ggreg...@apache.org Java Persistence with Hibernate, Second Edition JUnit in Action, Second Edition Spring Batch in Action

Re: [math] RealVector with visibility protected|public conflict

2013-04-11 Thread Gilles
On Thu, 11 Apr 2013 16:45:42 +0200, Arne Ploese wrote: Am Donnerstag, den 11.04.2013, 16:08 +0200 schrieb Gilles: Hello. > > in class org.apache.commons.math3.linear.RealVector there is the > embedded class Entry which is protected, but it is exposed by method > public Iterator iterator() ...

Re: [math] RealVector with visibility protected|public conflict

2013-04-11 Thread Arne Ploese
Am Donnerstag, den 11.04.2013, 16:08 +0200 schrieb Gilles: > Hello. > > > > > in class org.apache.commons.math3.linear.RealVector there is the > > embedded class Entry which is protected, but it is exposed by method > > public Iterator iterator() ... > > Good catch. Thanks. > > > > > My solution

Re: [math] RealVector with visibility protected|public conflict

2013-04-11 Thread Gilles
Hello. in class org.apache.commons.math3.linear.RealVector there is the embedded class Entry which is protected, but it is exposed by method public Iterator iterator() ... Good catch. Thanks. My solution: 1. make class Entry public 2. make class RealVector implement Iterable> so one can d