kinow commented on a change in pull request #55: [IMAGING-236] Add support to 
read multiple images from GIF
URL: https://github.com/apache/commons-imaging/pull/55#discussion_r341782550
 
 

 ##########
 File path: 
src/main/java/org/apache/commons/imaging/formats/gif/GifImageParser.java
 ##########
 @@ -439,6 +439,16 @@ private GifBlock findBlock(final List<GifBlock> blocks, 
final int code) {
         return null;
     }
 
+    private <T extends GifBlock> List<T> findAllBlocks(final List<GifBlock> 
blocks, final int code) {
+        final List<T> filteredBlocks = new ArrayList<>();
+        for (final GifBlock gifBlock : blocks) {
+            if (gifBlock.blockCode == code) {
+                filteredBlocks.add((T) gifBlock);
 
 Review comment:
   Just re-read the `GifImageParser#readBlocks()`, and actually I believe the 
only way this could happen, is if the `switch/case` logic was wrong, and used 
the wrong class for a block code. So this should be fine, especially as this 
appears to be internal use only.
   
   So maybe just add the suppress annotation and a note, e.g.
   
   ```
   // See GifImageParser#parse for reference how the blocks are created. They 
should match
   // the code we are giving here, returning the correct class type. Internal 
only.
   @SuppressWarnings("unchecked")
   private <T extends GifBlock> List<T> findAllBlocks(final List<GifBlock> 
blocks, final int code) {
   ```
   
   ?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to