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

lutoff
25.32.2007 7ad3b49f29529fc14f6f0732dc39062a1faf94e2
opendj-sdk/opends/src/server/org/opends/server/util/args/ArgumentParser.java
@@ -1002,19 +1002,12 @@
              .toLowerCase());
          if (value != null)
          {
            a.addValue(value);
            if (a.needsValue())
            {
              a.addValue(value);
              a.setPresent(true);
            }
            else
            if (value.toLowerCase().equals(CONFIG_VALUE_TRUE))
            {
              // Boolean value. Set to "present" only if
              // value property value is "true"
              // (insensitive case)
              a.setPresent(true);
            }
            a.setValueSetByProperty(true);
          }
        }
      }