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

Jean-Noel Rouvignac
17.27.2015 09231099ef1a49460ef0d04f89e02a43412c7ca6
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/IndexPanel.java
@@ -714,7 +714,7 @@
      lines.add("ds-cfg-index-entry-limit: "+entryLimitValue);
      for (IndexType type : indexTypes)
      {
        lines.add("ds-cfg-index-type: "+type.toString());
        lines.add("ds-cfg-index-type: " + type);
      }
      StringBuilder sb = new StringBuilder();
      for (String line : lines)
@@ -896,12 +896,12 @@
        for (IndexType newType : toAdd)
        {
          args.add("--add");
          args.add("index-type:"+newType.toString());
          args.add("index-type:" + newType);
        }
        for (IndexType newType : toDelete)
        {
          args.add("--remove");
          args.add("index-type:"+newType.toString());
          args.add("index-type:" + newType);
        }
      }
      if (entryLimitValue != indexToModify.getEntryLimit())