mirror of
https://github.com/Minestom/Minestom.git
synced 2025-01-23 16:41:35 +01:00
make reviewdog slightly happier
This commit is contained in:
parent
e4a966e7af
commit
6fb533837d
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user