Skip to content

Commit

Permalink
Merge pull request #676 from alvasw/persistence_persist_protected
Browse files Browse the repository at this point in the history
Persistence: Make persist method visibility protected
  • Loading branch information
alvasw authored Mar 3, 2023
2 parents 2c6e6aa + 6a89291 commit a55b6b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public CompletableFuture<Void> persistAsync(T serializable) {
}, PERSISTENCE_IO_POOL);
}

public void persist(T persistableStore) {
protected void persist(T persistableStore) {
persistableStoreReaderWriter.write(persistableStore);
}
}

0 comments on commit a55b6b8

Please sign in to comment.