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

Jean-Noel Rouvignac
16.10.2015 1ef65104c4113a1c6fad7ee93bc9862218a4bc68
opendj-server-legacy/src/main/java/org/opends/server/config/IntegerConfigAttribute.java
@@ -218,16 +218,8 @@
    this.hasUpperBound = hasUpperBound;
    this.upperBound    = upperBound;
    if (values == null)
    {
      activeValues  = new ArrayList<Long>();
      pendingValues = activeValues;
    }
    else
    {
      activeValues  = values;
      pendingValues = activeValues;
    }
    activeValues  = values != null ? values : new ArrayList<Long>();
    pendingValues = activeValues;
  }