Skip to content

Commit

Permalink
Clean up unused stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Jikoo committed Nov 1, 2021
1 parent 39e17f6 commit 89c7e77
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/tag_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ git add .
git commit -S -m "Bump version to $version for release"
git tag -s "$version" -m "Release $version"

mvn clean package -am -P all
mvn clean package -am

mvn versions:set -DnewVersion="$snapshot"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import com.github.jikoo.enchantableblocks.registry.EnchantableBlockRegistry;
import com.github.jikoo.enchantableblocks.util.enchant.EnchantOperation;
import com.github.jikoo.enchantableblocks.util.enchant.EnchantmentHelper;
import com.github.jikoo.enchantableblocks.util.logging.PatternCountHandler;
import com.github.jikoo.planarwrappers.util.StringConverters;
import java.util.Arrays;
import java.util.EnumSet;
Expand Down Expand Up @@ -50,7 +49,6 @@ class TableEnchanterTest {

private ServerMock server;
private Plugin plugin;
private PatternCountHandler cannotObtainSeed;
private EnchantableBlockRegistry registry;
private Player player;
private TableEnchanter listener;
Expand All @@ -72,8 +70,6 @@ public boolean hasPermission(String name) {
}
};
plugin = MockBukkit.createMockPlugin("EnchantableBlocks");
cannotObtainSeed = new PatternCountHandler("Cannot obtain seed");
plugin.getLogger().addHandler(cannotObtainSeed);
registry = new EnchantableBlockRegistry(plugin);

// Add dummy registrations for valid and invalid materials.
Expand Down

0 comments on commit 89c7e77

Please sign in to comment.