home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 June
/
CHIPHEFT062001.ISO
/
browser
/
nc32lyc
/
comm.z
/
java40.jar
/
netscape
/
secfile
/
FileOutputStreamNoFinalize.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
2000-08-15
|
454 b
|
14 lines
package netscape.secfile;
import java.io.FileOutputStream;
import java.io.IOException;
class FileOutputStreamNoFinalize extends FileOutputStream {
public FileOutputStreamNoFinalize(String var1, boolean var2) throws IOException {
super(var1, var2);
}
protected void finalize() {
}
}