* Doug Chestnut: > Hi simon, just noticed this as well. This should fix it: > > - verbose = Boolean.parseBoolean(verboseProperty); > + verbose = Boolean.valueOf(verboseProperty).booleanValue();
Mea culpa, Indeed parseBoolean is only available in JDK 1.5. I committed your fix, thanks! -- Jean-Baptiste Quenot http://caraldi.com/jbq/
