Ejemplo n.º 1
0
 private void PrepareInflater()
 {
     if (inf == null)
     {
         inf = InflaterCache.Get();
     }
     else
     {
         inf.Reset();
     }
 }
Ejemplo n.º 2
0
        private static InputStream Inflate(InputStream @in, long size, ObjectId id)
        {
            Inflater inf = InflaterCache.Get();

            return(new _InflaterInputStream_307(size, id, @in, inf));
        }