From 120a9e915df2a9c1c31f03998efbeeb7355409d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Prante?= Date: Fri, 5 Jan 2024 21:05:41 +0100 Subject: [PATCH] fix javadoc --- .../src/main/java/org/xbib/event/wal/SyncListener.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/event-common/src/main/java/org/xbib/event/wal/SyncListener.java b/event-common/src/main/java/org/xbib/event/wal/SyncListener.java index 3bce902..7a6caaf 100644 --- a/event-common/src/main/java/org/xbib/event/wal/SyncListener.java +++ b/event-common/src/main/java/org/xbib/event/wal/SyncListener.java @@ -4,8 +4,7 @@ package org.xbib.event.wal; *

* Provides a callback mechanism by which applicable listeners can be notified * when a WriteAheadRepository is synched (via the - * {@link WriteAheadRepository#checkpoint()} - * method) or one of its partitions is + * {@link WriteAheadRepository#checkpoint()} method) or one of its partitions is * synched via * {@link WriteAheadRepository#update(java.util.Collection, boolean)} with a * value of true for the second argument. @@ -45,7 +44,7 @@ public interface SyncListener { */ void onGlobalSync(); - public static final SyncListener NOP_SYNC_LISTENER = new SyncListener() { + SyncListener NOP_SYNC_LISTENER = new SyncListener() { @Override public void onSync(int partitionIndex) { }