diff -r 30b840ed8c0e -r 822b7e3d064d src/main/java/de/uapcore/lightpit/dao/IssueDao.java --- a/src/main/java/de/uapcore/lightpit/dao/IssueDao.java Fri Oct 23 18:40:50 2020 +0200 +++ b/src/main/java/de/uapcore/lightpit/dao/IssueDao.java Fri Oct 23 20:34:57 2020 +0200 @@ -83,10 +83,11 @@ * Stores the specified comment in database. * This is an update-or-insert operation. * + * @param issue the issue to save the comment for * @param comment the comment to save * @throws SQLException on any kind of SQL error */ - void saveComment(IssueComment comment) throws SQLException; + void saveComment(Issue issue, IssueComment comment) throws SQLException; /** * Saves an instances to the database.