removing assert(), since that's a reserved keyword in JDK 1.4
we can add it back later once log4j settles on a new method name git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138809 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -17,7 +17,7 @@ import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author Rod Waldhoff
|
||||
* @version $Id: SimpleLog.java,v 1.2 2001/08/02 22:14:41 rwaldhoff Exp $
|
||||
* @version $Id: SimpleLog.java,v 1.3 2001/08/07 17:37:22 rwaldhoff Exp $
|
||||
*/
|
||||
public class SimpleLog implements Log {
|
||||
static protected final Properties _simplelogProps = new Properties();
|
||||
@@ -120,10 +120,6 @@ public class SimpleLog implements Log {
|
||||
}
|
||||
}
|
||||
|
||||
public final void assert(boolean assertion, String msg) {
|
||||
if(!assertion) { error(msg); }
|
||||
}
|
||||
|
||||
public final void debug(Object message) {
|
||||
log(DEBUG,message,null);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user