This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[ecj] Patch: FYI: fix test case


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]