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

lutoff
25.32.2007 7ad3b49f29529fc14f6f0732dc39062a1faf94e2
opendj-sdk/opends/src/server/org/opends/server/util/args/SubCommandArgumentParser.java
@@ -1241,19 +1241,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);
          }
        }
      }
@@ -1293,19 +1286,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);
            }
          }
        }