fixed some saves

This commit is contained in:
Fredrik Friis 2012-03-01 12:43:27 +09:00
parent 70fa7bc5ac
commit 301c8dfcb7
2 changed files with 3 additions and 3 deletions
src/main/java/se/su/dsv/scipro/data/controllers/impl

@ -90,7 +90,7 @@ public class CheckListControllerImpl implements CheckListController, IClusterabl
clUpload.setFileName(upload.getClientFileName());
clUpload = checkListUploadDao.save(clUpload);
checkList.setCheckListUpload(clUpload);
checkListDao.save(checkList);
checkList = checkListDao.save(checkList);
return true;
} catch (Exception e) {
//Something went wrong...
@ -119,7 +119,7 @@ public class CheckListControllerImpl implements CheckListController, IClusterabl
CheckList tmp = checkListUpload.getCheckList();
tmp.setCheckListUpload(null);
checkListUploadDao.delete(checkListUpload);
checkListDao.save(tmp);
tmp = checkListDao.save(tmp);
}
}

@ -119,7 +119,7 @@ public class NotificationControllerImpl implements NotificationController {
notification.setUser(usertoNotify);
notification.setInfoText(notificationMessage.getWebNotificationMessage());
notification.setUrl(absoluteUrl);
notificationDao.save(notification);
notification = notificationDao.save(notification);
}
/*