Skip to content

Commit

Permalink
Gratuitous save from AbstractFolder.onDeleted/onRenamed (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick authored Sep 26, 2024
2 parents ff6e669 + 8074c23 commit 81e2a35
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,6 @@ public void onRenamed(I item, String oldName, String newName) throws IOException
for (View v : folderViews.getViews()) {
v.onJobRenamed(item, oldName, newName);
}
save();
}

/**
Expand All @@ -978,7 +977,6 @@ public void onDeleted(I item) throws IOException {
for (View v : folderViews.getViews()) {
v.onJobRenamed(item, item.getName(), null);
}
save();
}

/**
Expand Down

0 comments on commit 81e2a35

Please sign in to comment.