You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2013/02/20 13:27:46 UTC

svn commit: r1448118 - /tomcat/trunk/java/org/apache/tomcat/util/net/URL.java

Author: markt
Date: Wed Feb 20 12:27:46 2013
New Revision: 1448118

URL: http://svn.apache.org/r1448118
Log:
UCDetector: Remove unused code

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/net/URL.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/net/URL.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/URL.java?rev=1448118&r1=1448117&r2=1448118&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/net/URL.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/URL.java Wed Feb 20 12:27:46 2013
@@ -176,28 +176,6 @@ public final class URL implements Serial
 
 
     /**
-     * Create a URL object from the specified components.  The default port
-     * number for the specified protocol will be used.
-     *
-     * @param protocol Name of the protocol to use
-     * @param host Name of the host addressed by this protocol
-     * @param file Filename on the specified host
-     *
-     * @exception MalformedURLException is never thrown, but present for
-     *  compatible APIs
-     *
-     * @deprecated  Unused. Will be removed in Tomcat 8.0.x
-     */
-    @Deprecated
-    public URL(String protocol, String host, String file)
-        throws MalformedURLException {
-
-        this(protocol, host, -1, file);
-
-    }
-
-
-    /**
      * Create a URL object from the specified components.  Specifying a port
      * number of -1 indicates that the URL should use the default port for
      * that protocol.  Based on logic from JDK 1.3.1's



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org