summaryrefslogtreecommitdiffstats
path: root/libjava/java/util/zip/ZipFile.java
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-04 21:20:27 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-04 21:20:27 +0000
commit1f988cffa6f576abef5889d4d0f46b0b5c385e4d (patch)
treed2eb2328fa5eab09acb2edfe6a24e2b3c8e80bf4 /libjava/java/util/zip/ZipFile.java
parentab52ed1d93305dfc203ec4ab2917c474a50ebc35 (diff)
downloadppe42-gcc-1f988cffa6f576abef5889d4d0f46b0b5c385e4d.tar.gz
ppe42-gcc-1f988cffa6f576abef5889d4d0f46b0b5c385e4d.zip
* java/util/zip/ZipFile.java (ZipFile): Delete file when opened in
DELETE mode. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36144 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/util/zip/ZipFile.java')
-rw-r--r--libjava/java/util/zip/ZipFile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/util/zip/ZipFile.java b/libjava/java/util/zip/ZipFile.java
index b983c7b38c3..58e2748fd12 100644
--- a/libjava/java/util/zip/ZipFile.java
+++ b/libjava/java/util/zip/ZipFile.java
@@ -40,7 +40,7 @@ public class ZipFile implements ZipConstants
if ((mode & OPEN_DELETE) != 0)
{
delete_on_close = f;
- // f.deleteOnExit(); XXX - Not yet implemented in libgcj
+ f.deleteOnExit();
}
else
{
OpenPOWER on IntegriCloud