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

jvergara
17.41.2007 06d6f5c9c2feacb23d1af30d1ba58edad541076f
Fix for issue 2114.

The DatabasesTableModel now returns for several values Message objects. Update the DatabaseTableCellRenderer to take this into account.
1 files modified
4 ■■■■ changed files
opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/ui/StatusPanelDialog.java 4 ●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/ui/StatusPanelDialog.java
@@ -1335,6 +1335,10 @@
      {
        setTextValue(this, (String)value);
      }
      else if (value instanceof Message)
      {
        setTextValue(this, ((Message)value).toString());
      }
      else if (value instanceof Set)
      {
        LinkedHashSet<String> baseDns = new LinkedHashSet<String>();