Uploaded image for project: 'Click'
  1. Click
  2. CLK-600

Page.getMessage( message, params) does not accept null for params

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Trivial
    • Resolution: Fixed
    • 2.1.0
    • 2.1.0
    • core
    • None

    Description

      Page.getMessage() method does not accept null as parameter for Object[] args while it should.

      Instead of this:
      content = getMessage("exception_" + ex.getErrorType() + "_message", ex.getParameters());

      I have to write code like this:
      if (ex.getParameters() != null)

      { content = getMessage("exception_" + ex.getErrorType() + "_message", ex.getParameters()); }

      else

      { content = getMessage("exception_" + ex.getErrorType() + "_message"); }

      The underlying mechanism, MessageFormat.format(String, Object[]) has no trouble handling null as args, so I don't see the reason to bomb out with an IllegalArgumentException("Null args parameter");

      Attachments

        Activity

          People

            medgar Malcolm Edgar
            surfman WarnerJan Veldhuis
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: