You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2014/04/04 18:21:06 UTC

svn commit: r1584791 - /tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java

Author: kkolinko
Date: Fri Apr  4 16:21:06 2014
New Revision: 1584791

URL: http://svn.apache.org/r1584791
Log:
Followup to r1584513:
tabs -> spaces, as reminded by checkstyle

Modified:
    tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java

Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java?rev=1584791&r1=1584790&r2=1584791&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java (original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java Fri Apr  4 16:21:06 2014
@@ -726,7 +726,7 @@ public class SimpleTcpCluster extends Li
                     log.debug("Invoking addValve on " + getContainer()
                             + " with class=" + valve.getClass().getName());
                 if (valve != null) {
-                	container.getPipeline().addValve(valve);
+                    container.getPipeline().addValve(valve);
                     valve.setCluster(this);
                 }
             }
@@ -743,7 +743,7 @@ public class SimpleTcpCluster extends Li
                 log.debug("Invoking removeValve on " + getContainer()
                         + " with class=" + valve.getClass().getName());
             if (valve != null) {
-            	container.getPipeline().removeValve(valve);
+                container.getPipeline().removeValve(valve);
                 valve.setCluster(null);
             }
         }



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