Removed suppressing deprecated warning.

This commit is contained in:
nishadi 2018-01-18 00:06:41 +05:30
parent a6f2486ec6
commit ff3eacd0ba
2 changed files with 1 additions and 2 deletions

View File

@ -42,7 +42,6 @@ import java.util.List;
* This handles CommentDAO related operations. * This handles CommentDAO related operations.
*/ */
@SuppressWarnings( "deprecation" )
public class CommentDAOImpl extends AbstractDAOImpl implements CommentDAO { public class CommentDAOImpl extends AbstractDAOImpl implements CommentDAO {
private static final Log log = LogFactory.getLog(CommentDAOImpl.class); private static final Log log = LogFactory.getLog(CommentDAOImpl.class);

View File

@ -42,7 +42,7 @@ import java.util.List;
/** /**
* This class is the default implementation for the Managing the comments. * This class is the default implementation for the Managing the comments.
*/ */
@SuppressWarnings("deprecation") public class CommentsManagerImpl implements CommentsManager { public class CommentsManagerImpl implements CommentsManager {
private static final Log log = LogFactory.getLog(CommentsManagerImpl.class); private static final Log log = LogFactory.getLog(CommentsManagerImpl.class);
private CommentDAO commentDAO; private CommentDAO commentDAO;