make reviewdog slightly happier

This commit is contained in:
Matt Worzala 2021-01-26 09:10:26 -05:00
parent e4a966e7af
commit 6fb533837d

View File

@ -53,22 +53,23 @@ public interface Batch<Callback> extends BlockModifier {
*
* @return true if the batch is ready to apply
*/
default boolean isReady() { return true; }
default boolean isReady() {
return true;
}
/**
* Blocks the current thread until the batch is ready to be applied.
*
* @see #isReady() for a non-blocking way to determine if the batch is ready
*/
default void awaitReady() {}
default void awaitReady() {
}
/**
* Removes all block data from this batch.
*/
void clear();
// Batch rotate(? );
/**
* Called to apply the batch to the given instance.
* <p>