vmassol 02/04/22 06:46:11
Modified: framework/src/java/share/org/apache/cactus/util/log Log.java
Log:
"public" keyword not needed for interface- thanks checkstyle
Revision Changes Path
1.2 +13 -13
jakarta-cactus/framework/src/java/share/org/apache/cactus/util/log/Log.java
Index: Log.java
===================================================================
RCS file:
/home/cvs/jakarta-cactus/framework/src/java/share/org/apache/cactus/util/log/Log.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Log.java 1 Mar 2002 00:43:47 -0000 1.1
+++ Log.java 22 Apr 2002 13:46:11 -0000 1.2
@@ -61,7 +61,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Vincent Massol</a>
*
- * @version $Id: Log.java,v 1.1 2002/03/01 00:43:47 vmassol Exp $
+ * @version $Id: Log.java,v 1.2 2002/04/22 13:46:11 vmassol Exp $
*/
public interface Log
{
@@ -70,7 +70,7 @@
*
* @param theMessage the message to log
*/
- public void debug(String theMessage);
+ void debug(String theMessage);
/**
* Log a DEBUG level message along with an exception
@@ -78,14 +78,14 @@
* @param theMessage the message to log
* @param theThrowable the exception to log
*/
- public void debug(String theMessage, Throwable theThrowable);
+ void debug(String theMessage, Throwable theThrowable);
/**
* Log an ERROR level message.
*
* @param theMessage the message to log
*/
- public void error(String theMessage);
+ void error(String theMessage);
/**
* Log an ERROR level message along with an exception
@@ -93,21 +93,21 @@
* @param theMessage the message to log
* @param theThrowable the exception to log
*/
- public void error(String theMessage, Throwable theThrowable);
+ void error(String theMessage, Throwable theThrowable);
/**
* Log an ERROR level exception only
*
* @param theThrowable the exception to log
*/
- public void error(Throwable theThrowable);
+ void error(Throwable theThrowable);
/**
* Log an INFO level message.
*
* @param theMessage the message to log
*/
- public void info(String theMessage);
+ void info(String theMessage);
/**
* Log an INFO level message along with an exception
@@ -115,14 +115,14 @@
* @param theMessage the message to log
* @param theThrowable the exception to log
*/
- public void info(String theMessage, Throwable theThrowable);
+ void info(String theMessage, Throwable theThrowable);
/**
* Log a WARNING level message.
*
* @param theMessage the message to log
*/
- public void warn(String theMessage);
+ void warn(String theMessage);
/**
* Log a WARNING level message along with an exception
@@ -130,25 +130,25 @@
* @param theMessage the message to log
* @param theThrowable the exception to log
*/
- public void warn(String theMessage, Throwable theThrowable);
+ void warn(String theMessage, Throwable theThrowable);
/**
* Used to log a message when entering a method.
*
* @param theMessage the message to log
*/
- public void entry(String theMessage);
+ void entry(String theMessage);
/**
* Used to log a message when exiting a method.
*
* @param theMessage the message to log
*/
- public void exit(String theMessage);
+ void exit(String theMessage);
/**
* @return true if the Log4j priority level is debugging
*/
- public boolean isDebugEnabled();
+ boolean isDebugEnabled();
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>