removing unused local variables
[org.ibex.core.git] / src / org / ibex / util / CAB.java
index 96e0947..98aa340 100644 (file)
@@ -51,7 +51,6 @@ public class CAB {
                 CFFILE file = (CFFILE)h.folders[i].files.elementAt(j);
                 if (file.fileName.equals(fileName)) return new LimitStream(is2, file.fileSize);
                 byte[] b = new byte[file.fileSize];
-                int read = is2.read(b);
             }
         }
 
@@ -384,7 +383,6 @@ public class CAB {
         }
 
         InputStream readBlock() throws IOException {
-            int checksum = readLittleInt(dis);
             int compressedBytes = readLittleShort(dis);
             int unCompressedBytes = readLittleShort(dis);
             byte[] reserved = new byte[/*folder.header.perDatablockReservedSize*/0];