Fix comparator and ensure @Nonnull annotated methods never return null in LogEntry

This commit is contained in:
Luck
2017-08-20 14:51:46 +02:00
Unverified
parent ae8be97db7
commit 269aa39378
2 changed files with 12 additions and 9 deletions
@@ -61,7 +61,7 @@ public abstract class AbstractMessagingService implements InternalMessagingServi
private final Gson gson = new Gson();
@Getter
private final BufferedRequest<Void> updateBuffer = new BufferedRequest<Void>(10000L, r -> getPlugin().doAsync(r)) {
private final BufferedRequest<Void> updateBuffer = new BufferedRequest<Void>(3000L, r -> getPlugin().doAsync(r)) {
@Override
protected Void perform() {
pushUpdate();