Update of /cvsroot/webmacro/webmacro/src/org/webmacro/util
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv24068/src/org/webmacro/util
Modified Files:
AbstractLogFile.java
Log Message:
Checkstyle: organise imports
Index: AbstractLogFile.java
===================================================================
RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/util/AbstractLogFile.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** AbstractLogFile.java 31 Oct 2005 02:46:41 -0000 1.5
--- AbstractLogFile.java 20 Mar 2008 12:24:52 -0000 1.6
***************
*** 21,29 ****
*/
-
package org.webmacro.util;
import java.text.MessageFormat;
! import java.util.*;
/**
--- 21,32 ----
*/
package org.webmacro.util;
import java.text.MessageFormat;
! import java.util.HashMap;
! import java.util.Iterator;
! import java.util.LinkedList;
! import java.util.List;
! import java.util.Map;
/**
***************
*** 31,35 ****
* to make it easier to write new log targets that plug into WM.
*/
-
abstract public class AbstractLogFile implements LogTarget
{
--- 34,37 ----
***************
*** 47,54 ****
/**
- * <p>
* Create a new LogFile instance reading properties from the
* supplied Settings object.
- * </p>
* <pre>
* LogTraceExceptions: true|false|yes|no|on|off
--- 49,54 ----
***************
*** 85,89 ****
/**
! * Set the log level for this Logfile. The default is LogSystem.NOTICE
*/
public void setLogLevel (int level)
--- 85,89 ----
/**
! * Set the log level for this Logfile. The default is LogSystem.NOTICE.
*/
public void setLogLevel (int level)
|