StringBuffer.java, [...]: Removed redundant and reordered modifiers.
2004-11-06 Michael Koch <konqueror@gmx.de> * java/lang/StringBuffer.java, java/lang/Throwable.java, java/security/spec/DSAParameterSpec.java, java/util/zip/ZipEntry.java, java/util/zip/ZipFile.java, java/util/zip/ZipInputStream.java, java/util/zip/ZipOutputStream.java: Removed redundant and reordered modifiers. From-SVN: r90177
This commit is contained in:
parent
08d9302409
commit
c2e999dfeb
8 changed files with 60 additions and 50 deletions
|
@ -1,4 +1,4 @@
|
|||
/* java.util.zip.ZipEntry
|
||||
/* ZipEntry.java --
|
||||
Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
@ -71,15 +71,14 @@ public class ZipEntry implements ZipConstants, Cloneable
|
|||
int flags; /* used by ZipOutputStream */
|
||||
int offset; /* used by ZipFile and ZipOutputStream */
|
||||
|
||||
|
||||
/**
|
||||
* Compression method. This method doesn't compress at all.
|
||||
*/
|
||||
public final static int STORED = 0;
|
||||
public static final int STORED = 0;
|
||||
/**
|
||||
* Compression method. This method uses the Deflater.
|
||||
*/
|
||||
public final static int DEFLATED = 8;
|
||||
public static final int DEFLATED = 8;
|
||||
|
||||
/**
|
||||
* Creates a zip entry with the given name.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue