diff options
author | Michael Koch <konqueror@gmx.de> | 2004-10-18 11:09:11 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-10-18 11:09:11 +0000 |
commit | 33308026956b572725ee65f22a730141586aaf85 (patch) | |
tree | 448ccd9f895c18a596ec2d23203cd9817f1ffe37 /libjava/java | |
parent | 2047d8e479efea09e4f812662fc38e57f9f37226 (diff) | |
download | gcc-33308026956b572725ee65f22a730141586aaf85.zip gcc-33308026956b572725ee65f22a730141586aaf85.tar.gz gcc-33308026956b572725ee65f22a730141586aaf85.tar.bz2 |
System.java: Revert accidential change.
2004-10-18 Michael Koch <konqueror@gmx.de>
* java/lang/System.java: Revert accidential change.
From-SVN: r89208
Diffstat (limited to 'libjava/java')
-rw-r--r-- | libjava/java/lang/System.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libjava/java/lang/System.java b/libjava/java/lang/System.java index 8372fbe..fa02666 100644 --- a/libjava/java/lang/System.java +++ b/libjava/java/lang/System.java @@ -36,9 +36,16 @@ this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ + package java.lang; import gnu.classpath.Configuration; + +import java.io.BufferedInputStream; +import java.io.BufferedOutputStream; +import java.io.FileDescriptor; +import java.io.FileInputStream; +import java.io.FileOutputStream; import java.io.InputStream; import java.io.PrintStream; import java.util.Properties; |