Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/service/ForumService.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/service/ForumService.java,v diff -u -r1.87 -r1.88 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/service/ForumService.java 21 Sep 2007 06:53:36 -0000 1.87 +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/service/ForumService.java 3 Jan 2008 02:04:41 -0000 1.88 @@ -162,15 +162,8 @@ return (Forum) forumDao.getById(forumUid); } - public Forum getForumByContentId(Long contentID) throws PersistenceException { -// String str = messageService.getMessage("label.authoring.heading.basic"); -// System.out.println(str); - - Forum forum = (Forum) forumDao.getByContentId(contentID); - if(forum == null){ - log.error("Could not find the content by given ID:"+contentID); - } - return forum; + public Forum getForumByContentId(Long contentID) throws PersistenceException { + return (Forum) forumDao.getByContentId(contentID); } public void deleteForumAttachment(Long attachmentId) throws PersistenceException {