[PATCH] java.io.IOException
Dalibor Topic
kaffe@rufus.w3.org
Sun, 18 Nov 2001 14:10:01 -0800 (PST)
--0-591821173-1006121401=:58011
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Hi,
the import statement for java.lang.String in kaffe's
implementation of
java.io.IOException is superfluous, since classes from
java.lang.* are
imported automatically.
Attached is a single line patch which fixes that.
Chagelog entry:
* libraries/javalib/java/io/IOException.java:
Removed superfluous import statement.
have fun
Dalibor Topic
=====
"Success means never having to wear a suit"
__________________________________________________
Do You Yahoo!?
Find the one for you at Yahoo! Personals
http://personals.yahoo.com
--0-591821173-1006121401=:58011
Content-Type: text/plain; name="remove_superfluous_import.diff"
Content-Description: remove_superfluous_import.diff
Content-Disposition: inline; filename="remove_superfluous_import.diff"
--- kaffe/libraries/javalib/java/io/IOException.java Tue Oct 12 04:29:46 1999
+++ patched-kaffe/libraries/javalib/java/io/IOException.java Sun Nov 18 01:53:55 2001
@@ -1,7 +1,5 @@
package java.io;
-import java.lang.String;
-
/*
* Java core library component.
*
--0-591821173-1006121401=:58011--