For PR libgcj/11349:

2003-06-30  Gary Benson  <gbenson@redhat.com>

	For PR libgcj/11349:
	* javax/naming/spi/NamingManager.java (getURLContext): Use

From-SVN: r68730
This commit is contained in:
Gary Benson 2003-06-30 19:15:56 +00:00 committed by Tom Tromey
parent d147b75b92
commit 27758dc09f
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2003-06-30 Gary Benson <gbenson@redhat.com>
For PR libgcj/11349:
* javax/naming/spi/NamingManager.java (getURLContext): Use
correct name for factory class.
2003-06-28 Michael Koch <konqueror@gmx.de>
* java/io/PrintStream.java

View File

@ -1,5 +1,5 @@
/* NamingManager.java --
Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -117,7 +117,7 @@ public class NamingManager
prefixes = "com.sun.jndi.url";
}
scheme += "URLContextFactory";
scheme = scheme + "." + scheme + "URLContextFactory";
StringTokenizer tokens = new StringTokenizer (prefixes, ":");
while (tokens.hasMoreTokens ())