Remove some occurrences (used for test and debugging) of System.out.println

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@178 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2014-09-25 15:17:30 +00:00
parent 0746282f26
commit 751e14eb9f
13 changed files with 24 additions and 46 deletions

View file

@ -507,16 +507,11 @@ public class DrawConverter extends ConverterHelper {
// Store in cache in case we need to recycle
svgImages.put(bgd.getFileName(), imageElement);
}
else {
System.out.println("Failed to parse SVG");
}
// Else fail silently
} catch (IOException e) {
// Will not happen with a byte array
System.out.println("IOException parsing SVG");
e.printStackTrace();
} catch (SAXException e) {
e.printStackTrace();
System.out.println("SAXException parsing SVG");
// Fail silently
}
}
}