Index: lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/controller/AuthoringController.java =================================================================== diff -u -r3850a2def809bcb85d27c5f796c5e28ac7d36f18 -r9f52e75fa4cf7f605aa95ac3aff5794c6eb860dd --- lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/controller/AuthoringController.java (.../AuthoringController.java) (revision 3850a2def809bcb85d27c5f796c5e28ac7d36f18) +++ lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/controller/AuthoringController.java (.../AuthoringController.java) (revision 9f52e75fa4cf7f605aa95ac3aff5794c6eb860dd) @@ -56,8 +56,6 @@ * This action handles all the authoring actions, which include opening author, saving, uploading instruction files and * all the wikipage actions * - * It inherits from the WikiPageAction which inherits from the LamsDispatchAction so that common actions can be used in - * learner, monitor and author * * @author lfoxton */ @@ -78,11 +76,6 @@ private static final String KEY_MODE = "mode"; - /** - * Default method when no dispatch parameter is specified. It is expected that the parameter - * toolContentID will be passed in. This will be used to retrieve content for this tool. - * - */ @RequestMapping("/authoring") public String unspecified(@ModelAttribute AuthoringForm authoringForm, HttpServletRequest request) throws Exception { Index: lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/forms/AuthoringForm.java =================================================================== diff -u -rada9f9222f66994c94c2989aea922429377f06ed -r9f52e75fa4cf7f605aa95ac3aff5794c6eb860dd --- lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/forms/AuthoringForm.java (.../AuthoringForm.java) (revision ada9f9222f66994c94c2989aea922429377f06ed) +++ lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/forms/AuthoringForm.java (.../AuthoringForm.java) (revision 9f52e75fa4cf7f605aa95ac3aff5794c6eb860dd) @@ -74,8 +74,6 @@ String currentTab; - String dispatch; - String sessionMapID; Long deleteFileUuid; @@ -113,14 +111,6 @@ this.currentTab = currentTab; } - public String getDispatch() { - return dispatch; - } - - public void setDispatch(String dispatch) { - this.dispatch = dispatch; - } - public boolean isLockOnFinished() { return lockOnFinished; }