Skip to content
This repository was archived by the owner on Nov 29, 2020. It is now read-only.

Commit

Permalink
UCDetector clean-up
Browse files Browse the repository at this point in the history
 - Remove unused code

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1361423 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
markt-asf committed Jul 13, 2012
1 parent 433ff1c commit 097ea3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 66 deletions.
10 changes: 2 additions & 8 deletions java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
import org.apache.catalina.ha.session.JvmRouteBinderValve;
import org.apache.catalina.ha.session.JvmRouteSessionIDBinderListener;
import org.apache.catalina.ha.session.SessionMessage;
import org.apache.catalina.ha.util.IDynamicProperty;
import org.apache.catalina.tribes.Channel;
import org.apache.catalina.tribes.ChannelListener;
import org.apache.catalina.tribes.Member;
Expand All @@ -73,9 +72,8 @@
* @author Peter Rossbach
* @version $Id$
*/
public class SimpleTcpCluster extends LifecycleBase
implements CatalinaCluster, LifecycleListener, IDynamicProperty,
MembershipListener, ChannelListener{
public class SimpleTcpCluster extends LifecycleBase implements CatalinaCluster,
LifecycleListener, MembershipListener, ChannelListener{

public static final Log log = LogFactory.getLog(SimpleTcpCluster.class);

Expand Down Expand Up @@ -390,7 +388,6 @@ public boolean setProperty(String name, String value) {
* @param name
* @param value
*/
@Override
public boolean setProperty(String name, Object value) {
if (log.isTraceEnabled())
log.trace(sm.getString("SimpleTcpCluster.setProperty", name, value,properties.get(name)));
Expand All @@ -408,7 +405,6 @@ public boolean setProperty(String name, Object value) {
* @param key
* @return The property
*/
@Override
public Object getProperty(String key) {
if (log.isTraceEnabled())
log.trace(sm.getString("SimpleTcpCluster.getProperty", key));
Expand All @@ -420,7 +416,6 @@ public Object getProperty(String key) {
*
* @return An iterator over the property names.
*/
@Override
public Iterator<String> getPropertyNames() {
return properties.keySet().iterator();
}
Expand All @@ -430,7 +425,6 @@ public Iterator<String> getPropertyNames() {
*
* @param key
*/
@Override
public void removeProperty(String key) {
properties.remove(key);
}
Expand Down
58 changes: 0 additions & 58 deletions java/org/apache/catalina/ha/util/IDynamicProperty.java

This file was deleted.

0 comments on commit 097ea3d

Please sign in to comment.