This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[ecj] Patch: FYI: fix test case
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 19 Jun 2006 11:39:12 -0600
- Subject: [ecj] Patch: FYI: fix test case
- Reply-to: tromey at redhat dot com
I'm checking this in on the gcj-eclipse branch
This fixes an incorrect test case.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* testsuite/libjava.lang/TestProxy.java: Don't use wildcard
imports for java.lang.reflect.
Index: testsuite/libjava.lang/TestProxy.java
===================================================================
--- testsuite/libjava.lang/TestProxy.java (revision 114362)
+++ testsuite/libjava.lang/TestProxy.java (working copy)
@@ -1,4 +1,5 @@
-import java.lang.reflect.*;
+import java.lang.reflect.Proxy;
+import java.lang.reflect.InvocationHandler;
import java.net.*;
public class TestProxy