fix compilation error
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 13 Feb 2010 00:51:47 +0000 (00:51 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 13 Feb 2010 00:51:47 +0000 (00:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@909673 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/connector/Connector.java

index ac3c393..2a51be1 100644 (file)
@@ -539,7 +539,7 @@ public class Connector
 
     /**
      * Return the port number on which we listen for requests.
-     */
+     /
     public int getPort() {
 
         return (this.port);
@@ -558,6 +558,10 @@ public class Connector
         setProperty("port", String.valueOf(port));
 
     }
+    
+    public int getPort() {
+        return this.port;
+    }
 
 
     /**