More post-refactoring recurrsion protection
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 7 Dec 2009 19:26:03 +0000 (19:26 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 7 Dec 2009 19:26:03 +0000 (19:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@888097 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/tomcat/util/net/JIoEndpoint.java

index 1471cb7..c42c9b2 100644 (file)
@@ -71,7 +71,7 @@ public class JIoEndpoint extends AbstractEndpoint {
             if (name.startsWith(socketName)) {
                 return IntrospectionUtils.setProperty(socketProperties, name.substring(socketName.length()), value);
             }
-            return IntrospectionUtils.setProperty(this,name,value);
+            return super.setProperty(name, value);
         } catch ( Exception x ) {
             log.error("Unable to set attribute \""+name+"\" to \""+value+"\"",x);
             return false;