From: Tim P <ti...@us...> - 2008-03-18 20:04:53
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro/servlet In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv25732/src/org/webmacro/servlet Modified Files: ListUtil.java Log Message: Checkstyle: Organise imports Index: ListUtil.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/servlet/ListUtil.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ListUtil.java 31 Oct 2005 02:46:41 -0000 1.12 --- ListUtil.java 18 Mar 2008 20:04:42 -0000 1.13 *************** *** 23,31 **** package org.webmacro.servlet; ! import java.util.*; /** * A utility class for templates loaded into the context as "List" by ListTool. ! * It allows template designers to work with Java arrays and lists using * without having to distinguish between them. * --- 23,37 ---- package org.webmacro.servlet; ! import java.util.ArrayList; ! import java.util.Arrays; ! import java.util.Enumeration; ! import java.util.Iterator; ! import java.util.List; ! import java.util.ListIterator; ! import java.util.StringTokenizer; /** * A utility class for templates loaded into the context as "List" by ListTool. ! * It allows template designers to work with Java arrays and lists * without having to distinguish between them. * |