comparison dwt/dwthelper/InflaterInputStream.d @ 332:1ee938a6e02e

Tango updates, removing trace prints and added prints via Logger
author Frank Benoit <benoit@tionex.de>
date Sun, 01 Feb 2009 19:40:09 +0100
parents 8d53428f9be0
children ecb375fd8f95
comparison
equal deleted inserted replaced
331:27479f54069d 332:1ee938a6e02e
42 return null; 42 return null;
43 } 43 }
44 44
45 void close (){ 45 void close (){
46 istr.close(); 46 istr.close();
47 }
48 tango.io.model.IConduit.InputStream input (){
49 return null;
50 }
51 long seek (long offset, Anchor anchor = Anchor.Begin){
52 return 0;
47 } 53 }
48 } 54 }
49 55
50 public class InflaterInputStream : dwt.dwthelper.InputStream.InputStream { 56 public class InflaterInputStream : dwt.dwthelper.InputStream.InputStream {
51 57