From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5054 invoked by alias); 19 Jun 2006 17:59:46 -0000 Received: (qmail 5046 invoked by uid 22791); 19 Jun 2006 17:59:45 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 19 Jun 2006 17:59:44 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5JHxgHe030192 for ; Mon, 19 Jun 2006 13:59:42 -0400 Received: from opsy.redhat.com (vpn50-82.rdu.redhat.com [172.16.50.82]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5JHxfbo032284; Mon, 19 Jun 2006 13:59:41 -0400 Received: by opsy.redhat.com (Postfix, from userid 500) id EFC9B814DD2; Mon, 19 Jun 2006 11:56:28 -0600 (MDT) To: Java Patch List Subject: Re: [ecj] Patch: FYI: fix test case References: From: Tom Tromey Reply-To: tromey@redhat.com X-Attribution: Tom Date: Mon, 19 Jun 2006 17:59:00 -0000 In-Reply-To: Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-IsSubscribed: yes Mailing-List: contact java-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-patches-owner@gcc.gnu.org X-SW-Source: 2006-q2/txt/msg00422.txt.bz2 >>>>> "Tom" == Tom Tromey 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 * 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