Skip to content

Commit

Permalink
Reduce visibility of commitTimetableSnapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
vpaturet committed Jul 17, 2024
1 parent 1a9b3ed commit 634375a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public TimetableSnapshot getTimetableSnapshotBuffer() {
*
* @param force Force the committing of a new snapshot even if the above conditions are not met.
*/
public void commitTimetableSnapshot(final boolean force) {
void commitTimetableSnapshot(final boolean force) {
if (force || snapshotFrequencyThrottle.timeIsUp()) {
if (force || buffer.isDirty()) {
LOG.debug("Committing {}", buffer);
Expand Down

0 comments on commit 634375a

Please sign in to comment.