remove deprecated usage of saveOrUpdate in preparation of hibernate 7

This commit is contained in:
Athou
2025-06-13 07:33:51 +02:00
parent f2c0d99bd9
commit d46ee7f673
12 changed files with 24 additions and 44 deletions

View File

@@ -57,7 +57,7 @@ public class OPMLImporter {
category.setParent(parent);
category.setUser(user);
category.setPosition(position);
feedCategoryDAO.saveOrUpdate(category);
feedCategoryDAO.persist(category);
}
for (int i = 0; i < children.size(); i++) {