URL.java: Renamed "handler" to "ph" in the whole file to match classpaths version.

2003-06-24  Michael Koch  <konqueror@gmx.de>

	* java/net/URL.java:
	Renamed "handler" to "ph" in the whole file to match classpaths
	version.
	* java/net/URLStreamHandler.java:
	(equals): Renamed "handler" to "ph".

From-SVN: r68439
This commit is contained in:
Michael Koch 2003-06-24 20:22:48 +00:00 committed by Michael Koch
parent bbe53f03c8
commit cb64c638f0
3 changed files with 50 additions and 42 deletions

View file

@ -269,10 +269,10 @@ public abstract class URLStreamHandler
return false;
int p1 = url1.getPort ();
if (p1 == -1)
p1 = url1.handler.getDefaultPort ();
p1 = url1.ph.getDefaultPort ();
int p2 = url2.getPort ();
if (p2 == -1)
p2 = url2.handler.getDefaultPort ();
p2 = url2.ph.getDefaultPort ();
if (p1 != p2)
return false;
String s1, s2;