Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/common/util In directory sc8-pr-cvs1:/tmp/cvs-serv28830/src/hk/hku/cecid/phoenix/common/util Modified Files: AuthenticationManager.java PassTool.java Property.java TextProperty.java XMLProperty.java Log Message: Remove all unused imports. convert all wildcard imports to non-wildcard imports. Index: AuthenticationManager.java =================================================================== RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/common/util/AuthenticationManager.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AuthenticationManager.java 9 Apr 2003 07:47:21 -0000 1.2 --- AuthenticationManager.java 11 Dec 2003 06:41:28 -0000 1.3 *************** *** 82,86 **** import java.util.Vector; import sun.misc.BASE64Encoder; - /** * This class manages a password file for doing user authentication. --- 82,85 ---- Index: PassTool.java =================================================================== RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/common/util/PassTool.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PassTool.java 9 Apr 2003 07:47:22 -0000 1.2 --- PassTool.java 11 Dec 2003 06:41:28 -0000 1.3 *************** *** 72,76 **** import java.io.File; import java.io.InputStreamReader; - /** * A command line utility to manipulate the password file used by --- 72,75 ---- Index: Property.java =================================================================== RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/common/util/Property.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Property.java 9 Apr 2003 07:47:25 -0000 1.3 --- Property.java 11 Dec 2003 06:41:28 -0000 1.4 *************** *** 74,78 **** import java.util.Hashtable; import java.util.Vector; - /** * This is an abstract class for property file reader. We may implement --- 74,77 ---- Index: TextProperty.java =================================================================== RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/common/util/TextProperty.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TextProperty.java 9 Apr 2003 07:47:28 -0000 1.3 --- TextProperty.java 11 Dec 2003 06:41:28 -0000 1.4 *************** *** 73,77 **** import java.io.IOException; import java.util.Properties; - /** * This is a concrete implementation of the property object for loading --- 73,76 ---- Index: XMLProperty.java =================================================================== RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/common/util/XMLProperty.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** XMLProperty.java 9 Apr 2003 07:47:29 -0000 1.5 --- XMLProperty.java 11 Dec 2003 06:41:28 -0000 1.6 *************** *** 73,83 **** import java.io.IOException; import java.util.ArrayList; - import java.util.List; - import java.util.StringTokenizer; - import java.util.Map; - import java.util.Iterator; import java.util.Enumeration; import java.util.HashMap; ! import org.jdom.Document; import org.jdom.Element; --- 73,82 ---- import java.io.IOException; import java.util.ArrayList; import java.util.Enumeration; import java.util.HashMap; ! import java.util.Iterator; ! import java.util.List; ! import java.util.Map; ! import java.util.StringTokenizer; import org.jdom.Document; import org.jdom.Element; *************** *** 85,89 **** import org.jdom.input.SAXBuilder; import org.jdom.output.XMLOutputter; - /** * This is a concrete implementation of the property object for loading --- 84,87 ---- |