MockPageManager touchPage: no guts, no glory
--------------------------------------------

                 Key: WICKET-4376
                 URL: https://issues.apache.org/jira/browse/WICKET-4376
             Project: Wicket
          Issue Type: Improvement
          Components: wicket
    Affects Versions: 1.5.4
         Environment: all
            Reporter: Richard Emberson
            Priority: Trivial


Change:
  public void touchPage(IManageablePage page)
  {
    if (true || page.isPageStateless() == false)
    { 
      pages.put(page.getPageId(), page);
    } 
  }
to:
  public void touchPage(IManageablePage page)
  {
      pages.put(page.getPageId(), page);
  }
screw your courage to the sticking point and remove the code

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to