mirror of
https://github.com/Artillex-Studios/AxMinions.git
synced 2024-11-30 12:54:11 +01:00
Make collectors final
This commit is contained in:
parent
c94e6be866
commit
2b11658e06
@ -10,7 +10,7 @@ import redempt.crunch.CompiledExpression;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
|
|
||||||
public class BlockCollector extends Collector<Location> {
|
public final class BlockCollector extends Collector<Location> {
|
||||||
private final CollectorShape shape;
|
private final CollectorShape shape;
|
||||||
private final CompiledExpression expression;
|
private final CompiledExpression expression;
|
||||||
private final List<Filter<?>> filters;
|
private final List<Filter<?>> filters;
|
||||||
|
@ -11,7 +11,7 @@ import redempt.crunch.CompiledExpression;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
|
|
||||||
public class EntityCollector extends Collector<Entity> {
|
public final class EntityCollector extends Collector<Entity> {
|
||||||
private final CollectorShape shape;
|
private final CollectorShape shape;
|
||||||
private final CompiledExpression expression;
|
private final CompiledExpression expression;
|
||||||
private final List<Filter<?>> filters;
|
private final List<Filter<?>> filters;
|
||||||
|
Loading…
Reference in New Issue
Block a user