svn commit: r1057 - logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter

Author: seb Date: Mon Dec 4 10:15:25 2006 New Revision: 1057 Modified: logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/Filter.java Log: removed unused ints Modified: logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/Filter.java ============================================================================== --- logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/Filter.java (original) +++ logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/Filter.java Mon Dec 4 10:15:25 2006 @@ -38,24 +38,6 @@ public abstract class Filter extends ContextAwareBase implements LifeCycle { /** - * The event must be dropped immediately without consulting with the remaining - * filters, if any, in the chain. - */ - //public static final int DENY = -1; - - /** - * This filter is neutral with respect to the event. The remaining filters, if - * any, should be consulted for a final decision. - */ - //public static final int NEUTRAL = 0; - - /** - * The event must be logged immediately without consulting with the remaining - * filters, if any, in the chain. - */ - //public static final int ACCEPT = 1; - - /** * Points to the next filter in the filter chain. */ private Filter next;
participants (1)
-
noreply.seb@qos.ch