------- Comment #14 from bero at arklinux dot org 2005-12-16 09:59 ------- This happens 100% reproducably when using ResourceBundle.getString on an existing bundle with a nonexistant key -- this is enough to reproduce, no need for an external jar or anything:
=============================== import java.util.*; class test { public static void main(String args[]) { ResourceBundle bundle=ResourceBundle.getBundle("gnu.java.locale.LocaleInformation"); bundle.getString("This key does not exist."); } } =============================== Note that using getObject instead of getString works. -- bero at arklinux dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |critical http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24698