mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 22:11:30 +08:00
URLClassLoader.java (addURLImpl): Reset 'thisString'.
* java/net/URLClassLoader.java (addURLImpl): Reset 'thisString'. (toString): Synchronize. From-SVN: r96205
This commit is contained in:
parent
d3592adfe0
commit
41041fc2ac
@ -1,3 +1,8 @@
|
||||
2005-03-09 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* java/net/URLClassLoader.java (addURLImpl): Reset 'thisString'.
|
||||
(toString): Synchronize.
|
||||
|
||||
2005-03-08 Bryce McKinlay <mckinlay@redhat.com>
|
||||
|
||||
* testsuite/libjava.lang/pr13107_2.xfail: Remove xfail.
|
||||
|
@ -799,6 +799,9 @@ public class URLClassLoader extends SecureClassLoader
|
||||
if (newUrl == null)
|
||||
return; // Silently ignore...
|
||||
|
||||
// Reset the toString() value.
|
||||
thisString = null;
|
||||
|
||||
// Check global cache to see if there're already url loader
|
||||
// for this url.
|
||||
URLLoader loader = (URLLoader) urlloaders.get(newUrl);
|
||||
@ -1020,25 +1023,28 @@ public class URLClassLoader extends SecureClassLoader
|
||||
*/
|
||||
public String toString()
|
||||
{
|
||||
if (thisString == null)
|
||||
synchronized (urlloaders)
|
||||
{
|
||||
StringBuffer sb = new StringBuffer();
|
||||
sb.append(this.getClass().getName());
|
||||
sb.append("{urls=[" );
|
||||
URL[] thisURLs = getURLs();
|
||||
for (int i = 0; i < thisURLs.length; i++)
|
||||
if (thisString == null)
|
||||
{
|
||||
sb.append(thisURLs[i]);
|
||||
if (i < thisURLs.length - 1)
|
||||
sb.append(',');
|
||||
StringBuffer sb = new StringBuffer();
|
||||
sb.append(this.getClass().getName());
|
||||
sb.append("{urls=[" );
|
||||
URL[] thisURLs = getURLs();
|
||||
for (int i = 0; i < thisURLs.length; i++)
|
||||
{
|
||||
sb.append(thisURLs[i]);
|
||||
if (i < thisURLs.length - 1)
|
||||
sb.append(',');
|
||||
}
|
||||
sb.append(']');
|
||||
sb.append(", parent=");
|
||||
sb.append(getParent());
|
||||
sb.append('}');
|
||||
thisString = sb.toString();
|
||||
}
|
||||
sb.append(']');
|
||||
sb.append(", parent=");
|
||||
sb.append(getParent());
|
||||
sb.append('}');
|
||||
thisString = sb.toString();
|
||||
return thisString;
|
||||
}
|
||||
return thisString;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user