# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. Index: mauve/ChangeLog --- mauve/ChangeLog Base (1.2150) +++ mauve/ChangeLog Locally Modified (Based On 1.2150) @@ -1,5 +1,11 @@ 2009-09-24 Mario Torre + * gnu/testlet/java/util/ResourceBundle/getBundle: + Specify the parent classloader instead of using the system + classloader by default. + +2009-09-24 Mario Torre + * gnu/testlet/org/omg/PortableInterceptor/Interceptor/testInterceptors: Remove checks for wontfix bug http://bugs.sun.com/view_bug.do?bug_id=6314176. Index: mauve/gnu/testlet/java/util/ResourceBundle/getBundle.java --- mauve/gnu/testlet/java/util/ResourceBundle/getBundle.java Base (1.8) +++ mauve/gnu/testlet/java/util/ResourceBundle/getBundle.java Locally Modified (Based On 1.8) @@ -215,7 +215,9 @@ try { URL u = harness.getResourceFile ("").toURL (); - URLClassLoader loader = new URLClassLoader (new URL[] { u }); + URLClassLoader loader = + new URLClassLoader(new URL[] { u }, + getBundle.class.getClassLoader()); harness.check (loadCheck (c ("Resource11"), loader), "Maude"); } catch (MalformedURLException _)