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]

Re: [ecj] Patch: FYI: fix test case


>>>>> "Tom" == Tom Tromey <tromey@redhat.com> writes:

Tom> I'm checking this in on the gcj-eclipse branch
Tom> This fixes an incorrect test case.

Oops, wrong patch.
I've appended the right one.

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,6 @@
-import java.lang.reflect.*;
+import java.lang.reflect.Proxy;
+import java.lang.reflect.InvocationHandler;
+import java.lang.reflect.Method;
 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]