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
            Priority: Trivial
             Fix For: 2.0


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.

Reply via email to