[Minor] Don't allow to call Activity.ensureModifiable() no a sub activity

This commit is contained in:
Robert von Burg 2023-10-30 12:03:04 +01:00
parent 1ce5411888
commit 256ab666b3
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 2 additions and 0 deletions

View File

@ -740,6 +740,8 @@ public class Activity extends AbstractStrolchRootElement
@Override
public Activity ensureModifiable() {
if (!this.isRootElement())
throw new IllegalStateException("Only call this method on the root element!");
if (isReadOnly())
return getClone(true);
return this;