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

lutoff
28.18.2008 0a18765d6070d62406146219d568bb8ebb6065b5
opends/src/server/org/opends/server/tools/dsconfig/PropertyEditorModification.java
@@ -80,10 +80,8 @@
  {
    this.propertyDefinition = propertyDefinition;
    this.type = type;
    this.values = new TreeSet<T>();
    this.values.addAll(values);
    this.originalValues = new TreeSet<T>();
    this.originalValues.addAll(originalValues);
    this.values = new TreeSet<T>(values);
    this.originalValues = new TreeSet<T>(originalValues);
  }
  /**
@@ -97,7 +95,7 @@
      PropertyDefinition<T> propertyDefinition, SortedSet<T> originalValues)
  {
    return new PropertyEditorModification<T>(propertyDefinition, Type.RESET,
        new TreeSet<T>(), originalValues);
        new TreeSet<T>(propertyDefinition), originalValues);
  }
  /**