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: another test suite fix


I'm checking this in on the gcj-eclipse branch.

'Proxy' is ambiguous in this test case.

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>

	* testsuite/libjava.loader/TestLeak.java: Don't use wildcard
	import for java.lang.reflect.

Index: testsuite/libjava.loader/TestLeak.java
===================================================================
--- testsuite/libjava.loader/TestLeak.java	(revision 114931)
+++ testsuite/libjava.loader/TestLeak.java	(working copy)
@@ -1,5 +1,5 @@
 import java.net.*;
-import java.lang.reflect.*;
+import java.lang.reflect.Proxy;
 
 public class TestLeak
 {


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