RE: Broken build in Java 1.5

2013-03-05 Thread Martin Gainty
+ Subject: Broken build in Java 1.5 From: michael.m.cla...@gmail.com To: dev@ant.apache.org It looks like my patch to fix JUnit Ignore notifications has broken compilation on Java 1.5 machines. I've fixed this in the attached patch by replacing !String#isEmpty() calls with String#length(

Broken build in Java 1.5

2013-03-05 Thread Michael Clarke
It looks like my patch to fix JUnit Ignore notifications has broken compilation on Java 1.5 machines. I've fixed this in the attached patch by replacing !String#isEmpty() calls with String#length() !=0 and removing @Override annotations on implementations of interface methods. Sorry for breaking t