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

jvergara
17.41.2007 575952edacb4cc1fb4e6c3f28c095e392ea9276a
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
opends/src/guitools/org/opends/guitools/statuspanel/ui/StatusPanelDialog.java 4 ●●●● patch | view | raw | blame | history
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>();