Add Override annotation to recently added methods.
authorrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 24 Sep 2011 11:13:01 +0000 (11:13 +0000)
committerrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 24 Sep 2011 11:13:01 +0000 (11:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1175158 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/ha/session/DeltaSession.java

index 11b1756..c863e79 100644 (file)
@@ -566,6 +566,7 @@ public class DeltaSession extends StandardSession implements Externalizable,Clus
      * @param value The value of the attribute to check
      * @return true if the attribute is distributable, false otherwise
      */
+    @Override
     protected boolean isAttributeDistributable(String name, Object value) {
         if (manager instanceof ClusterManagerBase &&
             !((ClusterManagerBase)manager).willAttributeDistribute(name))
@@ -578,6 +579,7 @@ public class DeltaSession extends StandardSession implements Externalizable,Clus
      * @param name the attribute's name
      * @return true is attribute should not be replicated
      */
+    @Override
     protected boolean exclude(String name) {
 
         if (super.exclude(name))