Changeset 3461


Ignore:
Timestamp:
Jun 7, 2007, 9:28:01 AM (16 years ago)
Author:
Nicklas Nordborg
Message:

Remvoed unused imports

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/core/net/sf/basedb/util/Enumeration.java

    r2992 r3461  
    9292 
    9393  /**
    94    * This method will sort the enumration on the keys using
    95    * {@link Collections#sort(List, Comparator<Entry<K, V>>)}.
    96    * The comparator will try to use the keys 'compareTo' method
    97    * if it implements the Comparable interface
    98    * otherwilse it will treat the key as a String.
    99    */
     94    This method will sort the enumration on the keys using
     95    {@link Collections#sort(List, Comparator)}.
     96    The comparator will try to use the keys 'compareTo' method
     97    if it implements the Comparable interface
     98    otherwilse it will treat the key as a String.
     99  */
    100100  public void sortKeys()
    101101  {
     
    120120 
    121121  /**
    122    * This method will sort the enumration on the values using
    123    * {@link Collections#sort(List, Comparator<Entry<K, V>>)}.
    124    * The comparator will try to use the values 'compareTo' method
    125    * if it implements the Comparable interface
    126    * otherwilse it will treat the value as a String.
    127    */
     122    This method will sort the enumration on the values using
     123    {@link Collections#sort(List, Comparator)}.
     124    The comparator will try to use the values 'compareTo' method
     125    if it implements the Comparable interface
     126    otherwilse it will treat the value as a String.
     127  */ 
    128128  public void sortValues()
    129129  {
  • trunk/src/core/net/sf/basedb/util/parser/ConstantMapper.java

    r3264 r3461  
    2525
    2626import java.text.NumberFormat;
    27 import java.text.ParsePosition;
    2827
    2928import net.sf.basedb.core.Type;
  • trunk/src/install/net/sf/basedb/install/Webclient.java

    r3270 r3461  
    3030import net.sf.basedb.core.DbControl;
    3131import net.sf.basedb.core.Group;
    32 import net.sf.basedb.core.StringUtil;
    3332import net.sf.basedb.core.SystemItems;
    3433import net.sf.basedb.core.ItemKey;
Note: See TracChangeset for help on using the changeset viewer.