Commit d060a30b by Mark Wielaard

[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
parent c2914ce5
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.
2004-11-07 Robert Schuster <theBohemian@gmx.net> 2004-11-07 Robert Schuster <theBohemian@gmx.net>
Fixes bug #10908 Fixes bug #10908
......
/* Process.java - Represent spawned system process /* Process.java - Represent spawned system process
Copyright (C) 1998, 1999, 2001, 2002, 2003 Free Software Foundation, Inc. Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004
Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -38,8 +39,8 @@ exception statement from your version. */ ...@@ -38,8 +39,8 @@ exception statement from your version. */
package java.lang; package java.lang;
import java.io.OutputStream;
import java.io.InputStream; import java.io.InputStream;
import java.io.OutputStream;
/** /**
* An instance of a subclass of <code>Process</code> is created by the * An instance of a subclass of <code>Process</code> is created by the
......
...@@ -51,10 +51,10 @@ import java.util.Date; ...@@ -51,10 +51,10 @@ import java.util.Date;
*/ */
public class ZipEntry implements ZipConstants, Cloneable public class ZipEntry implements ZipConstants, Cloneable
{ {
private static int KNOWN_SIZE = 1; private static final int KNOWN_SIZE = 1;
private static int KNOWN_CSIZE = 2; private static final int KNOWN_CSIZE = 2;
private static int KNOWN_CRC = 4; private static final int KNOWN_CRC = 4;
private static int KNOWN_TIME = 8; private static final int KNOWN_TIME = 8;
private static Calendar cal; private static Calendar cal;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment