File tree Expand file tree Collapse file tree 4 files changed +17
-7
lines changed
main/java/world/bentobox/acidisland
test/java/world/bentobox/acidisland Expand file tree Collapse file tree 4 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 111111 </profiles >
112112
113113 <repositories >
114+ <repository >
115+ <id >papermc-public</id >
116+ <name >PaperMC Official</name >
117+ <url >https://repo.papermc.io/repository/maven-public/</url >
118+ <releases ><enabled >true</enabled ></releases >
119+ <snapshots ><enabled >false</enabled ></snapshots >
120+ </repository >
114121 <repository >
115122 <id >spigot-repo</id >
116123 <url >https://hub.spigotmc.org/nexus/content/repositories/snapshots</url >
Original file line number Diff line number Diff line change 11package world .bentobox .acidisland ;
22
3- import java .util .*;
3+ import java .util .ArrayList ;
4+ import java .util .Collections ;
5+ import java .util .HashMap ;
6+ import java .util .HashSet ;
7+ import java .util .List ;
8+ import java .util .Map ;
9+ import java .util .Set ;
410
511import org .bukkit .Difficulty ;
612import org .bukkit .GameMode ;
915import org .bukkit .entity .EntityType ;
1016import org .bukkit .potion .PotionEffectType ;
1117
12- import com .google .common .base .Enums ;
13-
1418import world .bentobox .bentobox .BentoBox ;
1519import world .bentobox .bentobox .api .configuration .ConfigComment ;
1620import world .bentobox .bentobox .api .configuration .ConfigEntry ;
1721import world .bentobox .bentobox .api .configuration .StoreAt ;
1822import world .bentobox .bentobox .api .configuration .WorldSettings ;
1923import world .bentobox .bentobox .api .flags .Flag ;
20- import world .bentobox .bentobox .database .objects .adapters .*;
24+ import world .bentobox .bentobox .database .objects .adapters .Adapter ;
25+ import world .bentobox .bentobox .database .objects .adapters .FlagBooleanSerializer ;
26+ import world .bentobox .bentobox .database .objects .adapters .PotionEffectListAdapter ;
2127
2228
2329/**
Original file line number Diff line number Diff line change 1919import world .bentobox .acidisland .world .AcidBiomeProvider ;
2020import world .bentobox .acidisland .world .AcidTask ;
2121import world .bentobox .acidisland .world .ChunkGeneratorWorld ;
22- import world .bentobox .bentobox .BentoBox ;
2322import world .bentobox .bentobox .api .addons .GameModeAddon ;
2423import world .bentobox .bentobox .api .commands .admin .DefaultAdminCommand ;
2524import world .bentobox .bentobox .api .commands .island .DefaultPlayerCommand ;
Original file line number Diff line number Diff line change 1919import org .junit .Ignore ;
2020import org .junit .Test ;
2121import org .junit .runner .RunWith ;
22- import org .mockito .Mockito ;
23- import org .powermock .api .mockito .PowerMockito ;
2422import org .powermock .core .classloader .annotations .PrepareForTest ;
2523import org .powermock .modules .junit4 .PowerMockRunner ;
2624
You can’t perform that action at this time.
0 commit comments