Modified CommentManagerImpl

removed catch (SQLException e) and catch (DBConnectionException e).
This commit is contained in:
nishadi 2018-01-17 14:27:44 +05:30
parent 74ea82c926
commit caa47417bc

View File

@ -193,16 +193,10 @@ public class CommentsManagerImpl implements CommentsManager {
try { try {
ConnectionManagerUtil.openDBConnection(); ConnectionManagerUtil.openDBConnection();
commentDAO.getComment(CommentId); commentDAO.getComment(CommentId);
return commentDAO.updateComment(CommentId, return commentDAO.updateComment(CommentId, comment.getComment(),comment.getModifiedBy(),comment.getModifiedAt());
comment.getComment(),comment.getModifiedBy(),comment.getModifiedAt());
} catch (SQLException e) {
log.error("SQL Exception occurs.", e);
} catch (DBConnectionException e) {
log.error("DB Connection Exception occurs.", e);
} finally { } finally {
ConnectionManagerUtil.closeDBConnection(); ConnectionManagerUtil.closeDBConnection();
} }
return commentDAO.getComment(CommentId);
} }
public int getRatedUser(String uuid){ public int getRatedUser(String uuid){