You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Michael Laccetti (JIRA)" <ji...@apache.org> on 2009/04/12 20:49:14 UTC

[jira] Created: (WICKET-2223) DiskPageStore::convertToPage cleanup

DiskPageStore::convertToPage cleanup
------------------------------------

                 Key: WICKET-2223
                 URL: https://issues.apache.org/jira/browse/WICKET-2223
             Project: Wicket
          Issue Type: Bug
          Components: wicket
    Affects Versions: 1.4-RC2
            Reporter: Michael Laccetti


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);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (WICKET-2223) DiskPageStore::convertToPage cleanup

Posted by "Juergen Donnerstag (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-2223?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Juergen Donnerstag resolved WICKET-2223.
----------------------------------------

       Resolution: Fixed
    Fix Version/s: 1.4-RC3
         Assignee: Juergen Donnerstag

fixed. Thanks

> DiskPageStore::convertToPage cleanup
> ------------------------------------
>
>                 Key: WICKET-2223
>                 URL: https://issues.apache.org/jira/browse/WICKET-2223
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.4-RC2
>            Reporter: Michael Laccetti
>            Assignee: Juergen Donnerstag
>             Fix For: 1.4-RC3
>
>
> 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);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.