public inbox for mauve-patches@sourceware.org
 help / color / mirror / Atom feed
* FYI: don't use System class loader by default.
@ 2009-09-24 13:21 Mario Torre
  0 siblings, 0 replies; only message in thread
From: Mario Torre @ 2009-09-24 13:21 UTC (permalink / raw)
  To: mauve-patches

[-- Attachment #1: Type: text/plain, Size: 545 bytes --]

As per subject,

Mario
-- 
Mario Torre, Software Developer, http://www.jroller.com/neugens/
aicas Allerton Interworks Computer Automated Systems GmbH
Haid-und-Neu-Straße 18 * D-76131 Karlsruhe * Germany
http://www.aicas.com   * Tel: +49-721-663 968-44
pgp key: http://subkeys.pgp.net/ PGP Key ID: 80F240CF
Fingerprint: BA39 9666 94EC 8B73 27FA  FC7C 4086 63E3 80F2 40CF

USt-Id: DE216375633, Handelsregister HRB 109481, AG Mannheim
Geschäftsführer: Dr. James J. Hunt

Please, support open standards:
http://endsoftpatents.org/


[-- Attachment #2: 2009-09-24-getBundle.patch --]
[-- Type: text/x-patch, Size: 1441 bytes --]

# 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  <neugens@aicas.com>
 
+    * gnu/testlet/java/util/ResourceBundle/getBundle:
+    Specify the parent classloader instead of using the system
+    classloader by default.
+
+2009-09-24  Mario Torre  <neugens@aicas.com>
+
     * 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 _)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-09-24 13:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-24 13:21 FYI: don't use System class loader by default Mario Torre

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).