diff --git a/dspace-api/src/main/java/org/dspace/content/DSpaceObject.java b/dspace-api/src/main/java/org/dspace/content/DSpaceObject.java index 29495199c3..280e10e274 100644 --- a/dspace-api/src/main/java/org/dspace/content/DSpaceObject.java +++ b/dspace-api/src/main/java/org/dspace/content/DSpaceObject.java @@ -39,7 +39,7 @@ public abstract class DSpaceObject implements Serializable, ReloadableEntity metadata = new ArrayList<>(); diff --git a/dspace-api/src/main/java/org/dspace/core/Context.java b/dspace-api/src/main/java/org/dspace/core/Context.java index 670f3b820e..56512ce986 100644 --- a/dspace-api/src/main/java/org/dspace/core/Context.java +++ b/dspace-api/src/main/java/org/dspace/core/Context.java @@ -371,8 +371,8 @@ public class Context * The database connection is not closed and can be reused afterwards. * * WARNING: After calling this method all previously fetched entities are "detached" (pending - * changes are not tracked anymore). You have to reload all entities you still want to work manually - * after this method call (see {@link Context#reloadEntity(ReloadableEntity)}). + * changes are not tracked anymore). You have to reload all entities you still want to work with + * manually after this method call (see {@link Context#reloadEntity(ReloadableEntity)}). * * @throws SQLException When committing the transaction in the database fails. */ @@ -635,8 +635,8 @@ public class Context * (heap space) memory. You should use this method when processing a large number of records. * * WARNING: After calling this method all previously fetched entities are "detached" (pending - * changes are not tracked anymore). You have to reload all entities you still want to work manually - * after this method call (see {@link Context#reloadEntity(ReloadableEntity)}). + * changes are not tracked anymore). You have to reload all entities you still want to work with + * manually after this method call (see {@link Context#reloadEntity(ReloadableEntity)}). * * This method will take care of reloading the current user. *