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

jvergara
17.18.2007 21c75c0b7e7242a715cff166aa6fffdd337b7078
Fix for issue 2113.  The Listeners Model must return a String as a value for the listener state as it does for the other columns.
1 files modified
6 ■■■■ changed files
opends/src/guitools/org/opends/guitools/statuspanel/ui/ListenersTableModel.java 6 ●●●● patch | view | raw | blame | history
opends/src/guitools/org/opends/guitools/statuspanel/ui/ListenersTableModel.java
@@ -196,15 +196,15 @@
      switch (desc.getState())
      {
      case ENABLED:
        v = INFO_ENABLED_LABEL.get();
        v = INFO_ENABLED_LABEL.get().toString();
        break;
      case DISABLED:
        v = INFO_DISABLED_LABEL.get();
        v = INFO_DISABLED_LABEL.get().toString();
        break;
      case UNKNOWN:
        v = INFO_UNKNOWN_LABEL.get();
        v = INFO_UNKNOWN_LABEL.get().toString();
        break;
        default: