Skip to content

Commit

Permalink
fixes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 committed Jan 3, 2025
1 parent 7dfe07a commit cb5521b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

package com.sk89q.worldedit.extension.factory.parser.mask;

import com.google.common.collect.ImmutableList;
import com.sk89q.worldedit.WorldEdit;
import com.sk89q.worldedit.extension.input.InputParseException;
import com.sk89q.worldedit.extension.input.ParserContext;
Expand All @@ -31,7 +30,7 @@

public class FullCubeMaskParser extends SimpleInputParser<Mask> {

private final List<String> aliases = ImmutableList.of("#fullcube");
private static final List<String> aliases = List.of("#fullcube");

public FullCubeMaskParser(WorldEdit worldEdit) {
super(worldEdit);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import com.sk89q.worldedit.math.BlockVector3;
import com.sk89q.worldedit.world.block.BlockState;

public class FullCubeMask extends AbstractExtentMask {
public final class FullCubeMask extends AbstractExtentMask {

public FullCubeMask(Extent extent) {
super(extent);
Expand Down

0 comments on commit cb5521b

Please sign in to comment.