You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Jean-Baptiste Quenot (JIRA)" <ji...@apache.org> on 2007/04/26 01:04:15 UTC

[jira] Resolved: (WICKET-370) wicket.jmx.Application.getHomePageClass() returns Application's class name

     [ https://issues.apache.org/jira/browse/WICKET-370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jean-Baptiste Quenot resolved WICKET-370.
-----------------------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 2.0)
                   1.3
         Assignee: Jean-Baptiste Quenot

Committed, thanks for spotting this!

> wicket.jmx.Application.getHomePageClass() returns Application's class name
> --------------------------------------------------------------------------
>
>                 Key: WICKET-370
>                 URL: https://issues.apache.org/jira/browse/WICKET-370
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 2.0
>         Environment: Linux, maven-jetty-plugin 6.1
>            Reporter: Martin Grigorov
>         Assigned To: Jean-Baptiste Quenot
>            Priority: Trivial
>             Fix For: 1.3
>
>
> Hi,
> There is a typo (copy/paste error)  in wicket.jmx.Application:
> public String getHomePageClass() throws IOException
>     {
>         return application.getClass().getName();
>     }
> should be:
> public String getHomePageClass() throws IOException
>     {
>         return application.getHomePage().getName();
>     }
> Regards
> Martin

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