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

Jean-Noël Rouvignac
20.05.2016 e252d821e43516a575bc6b046e16553cced8c1d2
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/components/CustomTree.java
@@ -14,7 +14,6 @@
 * Copyright 2008 Sun Microsystems, Inc.
 * Portions Copyright 2014-2016 ForgeRock AS.
 */
package org.opends.guitools.controlpanel.ui.components;
import static com.forgerock.opendj.util.OperatingSystem.isMacOS;
@@ -98,9 +97,9 @@
  private boolean isRowSelected(int[] selectedRows, int i)
  {
    for (int j=0; j<selectedRows.length; j++)
    for (int selectedRow : selectedRows)
    {
      if (selectedRows[j] == i)
      if (selectedRow == i)
      {
        return true;
      }