You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/10/24 02:24:05 UTC

svn commit: r1535228 - /commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/SofnSegment.java

Author: ggregory
Date: Thu Oct 24 00:24:04 2013
New Revision: 1535228

URL: http://svn.apache.org/r1535228
Log:
The declared exception ImageReadException is not actually thrown by the constructor SofnSegment(int, int, InputStream).

Modified:
    commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/SofnSegment.java

Modified: commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/SofnSegment.java
URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/SofnSegment.java?rev=1535228&r1=1535227&r2=1535228&view=diff
==============================================================================
--- commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/SofnSegment.java (original)
+++ commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/jpeg/segments/SofnSegment.java Thu Oct 24 00:24:04 2013
@@ -50,7 +50,7 @@ public class SofnSegment extends Segment
     }
 
     public SofnSegment(final int marker, final int marker_length, final InputStream is)
-            throws ImageReadException, IOException {
+            throws IOException {
         super(marker, marker_length);
 
         if (getDebug()) {