Exemplo n.º 1
0
 public synchronized void close() throws IOException {
   try {
     if (in != null) {
       in.close();
     }
   } finally {
     if (decompressor != null) {
       CodecPool.returnDecompressor(decompressor);
       decompressor = null;
     }
   }
 }