< prev index next >

core/JemmyAWTInput/src/org/jemmy/image/PNGDecoder.java

Print this page

        

@@ -93,21 +93,21 @@
     }
 
     /**
      * Decodes image from an input stream passed into constructor.
      * @return a BufferedImage object
-     * @throws IOException
+     * @throws IOException todo document
      */
     public BufferedImage decode() throws IOException {
         return decode(true);
     }
 
     /**
      * Decodes image from an input stream passed into constructor.
      * @return a BufferedImage object
      * @param closeStream requests method to close the stream after the image is read
-     * @throws IOException
+     * @throws IOException todo document
      */
     public BufferedImage decode(boolean closeStream) throws IOException {
 
         byte[] id = read(12);
         checkEquality(id, new byte[] {-119, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13});
< prev index next >