Skip to content

Commit

Permalink
less errors in image parser
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6907 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed May 30, 2010
1 parent 30b337f commit 2eea806
Showing 1 changed file with 0 additions and 2 deletions.
Expand Up @@ -122,10 +122,8 @@ public Document parse(
try {
image = jpegDecoder.decodeAsBufferedImage();
} catch (ImageFormatException e) {
Log.logException(e);
throw new ParserException(e.getMessage(), location);
} catch (IOException e) {
Log.logException(e);
throw new ParserException(e.getMessage(), location);
}
JPEGDecodeParam decodeParam = jpegDecoder.getJPEGDecodeParam();
Expand Down

0 comments on commit 2eea806

Please sign in to comment.