mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
19.09.2010 99d6402a5f64b3a07024f190df67c3de3aa443a4
opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/datamodel/VLVIndexDescriptor.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 *      Copyright 2008-2010 Sun Microsystems, Inc.
 */
package org.opends.guitools.controlpanel.datamodel;
@@ -73,15 +73,9 @@
  /**
   * {@inheritDoc}
   */
  public int compareTo(Object o)
  public int compareTo(AbstractIndexDescriptor o)
  {
    int returnValue = -1;
    if (o instanceof AbstractIndexDescriptor)
    {
      AbstractIndexDescriptor index = (AbstractIndexDescriptor)o;
      returnValue = getName().compareTo(index.getName());
    }
    return returnValue;
    return getName().compareTo(o.getName());
  }
  /**