File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
worldedit-core/src/main/java/com/sk89q/worldedit
extension/factory/parser/mask Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1919
2020package com .sk89q .worldedit .extension .factory .parser .mask ;
2121
22- import com .google .common .collect .ImmutableList ;
2322import com .sk89q .worldedit .WorldEdit ;
2423import com .sk89q .worldedit .extension .input .InputParseException ;
2524import com .sk89q .worldedit .extension .input .ParserContext ;
3130
3231public class FullCubeMaskParser extends SimpleInputParser <Mask > {
3332
34- private final List <String > aliases = ImmutableList .of ("#fullcube" );
33+ private static final List <String > aliases = List .of ("#fullcube" );
3534
3635 public FullCubeMaskParser (WorldEdit worldEdit ) {
3736 super (worldEdit );
Original file line number Diff line number Diff line change 2323import com .sk89q .worldedit .math .BlockVector3 ;
2424import com .sk89q .worldedit .world .block .BlockState ;
2525
26- public class FullCubeMask extends AbstractExtentMask {
26+ public final class FullCubeMask extends AbstractExtentMask {
2727
2828 public FullCubeMask (Extent extent ) {
2929 super (extent );
You can’t perform that action at this time.
0 commit comments