[multiple changes]

2004-11-07  Michael Koch  <konqueror@gmx.de>

       * java/lang/Process.java:
       Import cleanups.

2004-11-07  Jeroen Frijters  <jeroen@frijters.net>

       * java/util/zip/ZipEntry.java
       (KNOWN_SIZE, KNOWN_CSIZE, KNOWN_CRC, KNOWN_TIME): Made final.

From-SVN: r90231
This commit is contained in:
Mark Wielaard 2004-11-07 13:05:53 +00:00
parent c2914ce5bf
commit d060a30bf8
3 changed files with 17 additions and 6 deletions

View file

@ -51,10 +51,10 @@ import java.util.Date;
*/
public class ZipEntry implements ZipConstants, Cloneable
{
private static int KNOWN_SIZE = 1;
private static int KNOWN_CSIZE = 2;
private static int KNOWN_CRC = 4;
private static int KNOWN_TIME = 8;
private static final int KNOWN_SIZE = 1;
private static final int KNOWN_CSIZE = 2;
private static final int KNOWN_CRC = 4;
private static final int KNOWN_TIME = 8;
private static Calendar cal;