From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20199 invoked by alias); 10 Apr 2002 22:56:05 -0000 Mailing-List: contact java-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-owner@gcc.gnu.org Received: (qmail 20190 invoked from network); 10 Apr 2002 22:56:02 -0000 Received: from unknown (HELO gash2.peakpeak.com) (207.174.178.17) by sources.redhat.com with SMTP; 10 Apr 2002 22:56:02 -0000 Received: from creche.cygnus.com (ta0192.peakpeak.com [204.144.244.192] (may be forged)) by gash2.peakpeak.com (8.9.3/8.9.3) with ESMTP id QAA11252; Wed, 10 Apr 2002 16:55:56 -0600 Received: (from tromey@localhost) by creche.cygnus.com (8.9.3/8.9.3) id QAA30078; Wed, 10 Apr 2002 16:58:43 -0600 To: Eric Blake Cc: Adam Megacz , java@gcc.gnu.org Subject: Re: MissingResourceException with Date under mingw port References: <20020410131202.C24689@dreammechanics.com> <86r8lnzcpo.fsf@megacz.com> <3CB4908E.A902AF2E@email.byu.edu> <86d6x7z7fw.fsf@megacz.com> <3CB498AD.143AB04F@email.byu.edu> From: Tom Tromey Reply-To: tromey@redhat.com X-Attribution: Tom X-Zippy: Am I elected yet? Date: Wed, 10 Apr 2002 16:11:00 -0000 In-Reply-To: Eric Blake's message of "Wed, 10 Apr 2002 13:55:25 -0600" Message-ID: <87bscr40v1.fsf@creche.redhat.com> X-SW-Source: 2002-04/txt/msg00188.txt.bz2 >>>>> "Eric" == Eric Blake writes: Eric> I propose this patch (should it go on the branch, or just mainline?): Both, thanks. Eric> 2002-04-10 Eric Blake Eric> * java/util/Calendar.java (bundleName): Make reference to bundle Eric> explicit to aid the linker. This seems good to me. We may need similar changes elsewhere too, for instance in java.text (though based on the number of bug reports we've received over time I would say that few people use java.text). Eric> - private static final String bundleName = "gnu.java.locale.Calendar"; Eric> + private static final String bundleName Eric> + = gnu.java.locale.Calendar.class.getName(); I like the idea of putting this into Calendar. I wish I had thought of it. Do you think this is acceptable for Classpath though? Tom