Removed a printStackTrace. Test still not 100%, but good enough for now...

This commit is contained in:
Harald Kuhr 2009-09-18 23:01:19 +02:00
parent cc4303d073
commit 6da17cd7d1

View File

@ -81,9 +81,9 @@ public class ResampleOpTestCase extends TestCase {
assertResample(image, 15, 5, pFilterType);
}
catch (ImagingOpException e) {
// NOTE: It is currently allowed for filters to throw this exception
System.err.println(e.getMessage() + ", image: " + image);
e.printStackTrace();
// NOTE: It is currently allowed for filters to throw this exception and it is PLATFORM DEPENDENT..
System.err.println("WARNING: " + e.getMessage() + ", image: " + image);
//e.printStackTrace();
}
catch (Throwable t) {
exceptions.add(t.toString() + ": " + image.toString());