removed faulty if

This commit is contained in:
fred-fri 2013-05-31 16:57:34 +09:00
parent c3bc4ad28b
commit 1875ef0e4c

@ -69,8 +69,7 @@ public class ThesisUploadReminderWorker extends AbstractWorker {
if ((fs.getDocument()==null ||
fs.getDocument().getId()==null) &&
remindDate.after(todayStart) &&
remindDate.before(todayEnd) &&
systemSettings.isThesisReviewsMandatory()) {
remindDate.before(todayEnd)) {
notificationController.notifySeminar(fs, SeminarEvent.Event.THESIS_UPLOAD_REMIND, new NotificationSource());
}
}