comparison dwt/dwthelper/BufferedInputStream.d @ 358:558cbe388376

Same change as in dwt-win. Thx to Craig Slusher.
author Frank Benoit <benoit@tionex.de>
date Tue, 27 Jan 2009 10:09:26 +0100
parents 79bb10c082fb
children
comparison
equal deleted inserted replaced
357:a229cf799859 358:558cbe388376
96 implMissing( __FILE__, __LINE__ ); 96 implMissing( __FILE__, __LINE__ );
97 return false; 97 return false;
98 } 98 }
99 99
100 public void close(){ 100 public void close(){
101 this.istr.close(); 101 if( this.istr !is null ){
102 this.istr.close();
103 }
102 } 104 }
103 105
104 106
105 } 107 }
106 108