home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 September / PCO_0998.ISO / browser / ns405lyc / nav40.z / java40.jar / netscape / secfile / FileOutputStreamNoFinalize.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-03-24  |  408 b   |  14 lines

  1. package netscape.secfile;
  2.  
  3. import java.io.FileOutputStream;
  4. import java.io.IOException;
  5.  
  6. class FileOutputStreamNoFinalize extends FileOutputStream {
  7.    public FileOutputStreamNoFinalize(String var1, boolean var2) throws IOException {
  8.       super(var1, var2);
  9.    }
  10.  
  11.    protected void finalize() {
  12.    }
  13. }
  14.