Author: rjung
Date: Sat Sep 24 11:13:01 2011
New Revision: 1175158
URL: http://svn.apache.org/viewvc?rev=1175158&view=rev
Log:
Add Override annotation to recently added methods.
Modified:
tomcat/trunk/java/org/apache/catalina/ha/session/DeltaSession.java
Modified: tomcat/trunk/java/org/apache/catalina/ha/session/DeltaSession.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/ha/session/DeltaSession.java?rev=1175158&r1=1175157&r2=1175158&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/ha/session/DeltaSession.java
(original)
+++ tomcat/trunk/java/org/apache/catalina/ha/session/DeltaSession.java Sat Sep
24 11:13:01 2011
@@ -566,6 +566,7 @@ public class DeltaSession extends Standa
* @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 Standa
* @param name the attribute's name
* @return true is attribute should not be replicated
*/
+ @Override
protected boolean exclude(String name) {
if (super.exclude(name))
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]