mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
URLClassLoader.java (JarURLLoader.JarURLLoader): Just use space for parsing CLASS_PATH attribute.
* java/net/URLClassLoader.java (JarURLLoader.JarURLLoader): Just use
space for parsing CLASS_PATH attribute.
From-SVN: r95077
This commit is contained in:
committed by
Mark Wielaard
parent
d9fdd0d60f
commit
339fe53643
@@ -341,11 +341,7 @@ public class URLClassLoader extends SecureClassLoader
|
||||
{
|
||||
this.classPath = new Vector();
|
||||
|
||||
StringTokenizer st
|
||||
= new StringTokenizer
|
||||
(classPathString,
|
||||
System.getProperty ("path.separator", ":"));
|
||||
|
||||
StringTokenizer st = new StringTokenizer(classPathString, " ");
|
||||
while (st.hasMoreElements ())
|
||||
{
|
||||
String e = st.nextToken ();
|
||||
|
||||
Reference in New Issue
Block a user