2002/css-validator/org/w3c/css/util HTTPURL.java,1.18,1.19

Update of /sources/public/2002/css-validator/org/w3c/css/util
In directory hutz:/tmp/cvs-serv16147/org/w3c/css/util

Modified Files:
	HTTPURL.java 
Log Message:
removing a useless operation
int port = url.getPort();
since port wasn't used

Index: HTTPURL.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/HTTPURL.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- HTTPURL.java	14 Sep 2005 15:15:32 -0000	1.18
+++ HTTPURL.java	6 Aug 2007 15:08:29 -0000	1.19
@@ -157,7 +157,6 @@
 	}
 
 	if (Util.servlet) {
-	    int port = url.getPort();
 	    String protocol = url.getProtocol();
 	if (! (
 		("https".equalsIgnoreCase(protocol)) || ("http".equalsIgnoreCase(protocol))

Received on Monday, 6 August 2007 15:08:35 UTC