aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/util/zip/ZipConstants.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/util/zip/ZipConstants.java')
-rw-r--r--libjava/java/util/zip/ZipConstants.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/libjava/java/util/zip/ZipConstants.java b/libjava/java/util/zip/ZipConstants.java
deleted file mode 100644
index d5ca82d9c34..00000000000
--- a/libjava/java/util/zip/ZipConstants.java
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright (C) 1999 Cygnus Solutions
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-package java.util.zip;
-
-interface ZipConstants
-{
- // Size in bytes of local file header, including signature.
- public static final int LOCAL_FILE_HEADER_SIZE = 30;
-
- // Size in bytes of the "end of central directory" record, with signature.
- public static final int END_CENTRAL_DIR_SIZE = 22;
-}