Commit 5303e3d7 by Tom Tromey Committed by Tom Tromey

ResourceBundle.java (tryBundle): Also ignore ClassCastException.

	* java/util/ResourceBundle.java (tryBundle): Also ignore
	ClassCastException.

From-SVN: r89379
parent 0dda4eea
2004-10-21 Tom Tromey <tromey@redhat.com>
* java/util/ResourceBundle.java (tryBundle): Also ignore
ClassCastException.
2004-10-21 Kaz Kojima <kkojima@gcc.gnu.org>
* configure.ac (SIGNAL_HANDLER): Set to include/sh-signal.h
......
/* ResourceBundle -- aids in loading resource bundles
Copyright (C) 1998, 1999, 2001, 2002, 2003 Free Software Foundation, Inc.
Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
......@@ -478,6 +478,7 @@ public abstract class ResourceBundle
catch (IllegalAccessException ex) {}
catch (InstantiationException ex) {}
catch (ClassNotFoundException ex) {}
catch (ClassCastException ex) {}
if (bundle == null)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment