Uploaded image for project: 'Wicket'
  1. Wicket
  2. WICKET-2223

DiskPageStore::convertToPage cleanup

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 1.4-RC2
    • 1.4-RC3
    • wicket
    • None

    Description

      String type = page != null ? page.getClass().getName() : null;
      throw new IllegalArgumentException("Unknown object type + type");

      should be:

      String type = page != null ? page.getClass().getName() : null;
      throw new IllegalArgumentException("Unknown object type" + type);

      Attachments

        Activity

          People

            jdonnerstag Juegen Donnerstag
            mlaccetti Michael Laccetti
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: