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

matthew_swift
04.04.2009 4039d5a4652098e59a2eb14f6b2557235e993ab8
sdk/src/com/sun/opends/sdk/util/StaticUtils.java
@@ -1006,21 +1006,7 @@
    if (t instanceof LocalizableException)
    {
      final LocalizableException ie = (LocalizableException) t;
      final StringBuilder message = new StringBuilder();
      message.append(ie.getMessageObject());
      message.append(" (id=");
      final Message ieMsg = ie.getMessageObject();
      if (ieMsg != null)
      {
        message.append(ieMsg.getDescriptor().getOrdinal());
      }
      else
      {
        message.append(MessageDescriptor.NULL_ID);
      }
      message.append(")");
      return Message.raw(message.toString());
      return ie.getMessageObject();
    }
    else if (t instanceof NullPointerException)
    {