mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-04 09:10:17 +01:00
Remove remaining jetbrains imports
This commit is contained in:
parent
b68d7150f1
commit
c0a0d36e5d
@ -39,7 +39,6 @@ import org.bukkit.block.Biome;
|
||||
import org.bukkit.generator.BlockPopulator;
|
||||
import org.bukkit.generator.ChunkGenerator;
|
||||
import javax.annotation.Nonnull;
|
||||
import org.jetbrains.annotations.Range;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
@ -73,8 +72,10 @@ final class DelegatePlotGenerator extends IndependentPlotGenerator {
|
||||
try {
|
||||
ChunkGenerator.BiomeGrid grid = new ChunkGenerator.BiomeGrid() {
|
||||
@Override
|
||||
public void setBiome(@Range(from = 0, to = 15) int x,
|
||||
@Range(from = 0, to = 15) int z, @Nonnull Biome biome) {
|
||||
public void setBiome(
|
||||
final int x,
|
||||
final int z,
|
||||
@Nonnull final Biome biome) {
|
||||
result.setBiome(x, z, BukkitAdapter.adapt(biome));
|
||||
}
|
||||
|
||||
|
@ -52,7 +52,6 @@ import com.plotsquared.core.util.task.AutoClaimFinishTask;
|
||||
import com.plotsquared.core.util.task.RunnableVal;
|
||||
import com.plotsquared.core.util.task.TaskManager;
|
||||
import net.kyori.adventure.text.minimessage.Template;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import javax.annotation.Nonnull;
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
|
@ -14,7 +14,6 @@ buildscript {
|
||||
configurations.all {
|
||||
resolutionStrategy {
|
||||
force("org.ow2.asm:asm:8.0.1")
|
||||
force("org.jetbrains:annotations:19.0.0")
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -94,7 +93,6 @@ subprojects { subproject ->
|
||||
implementation("com.google.guava:guava:21.0") {
|
||||
because("Minecraft uses Guava 21 as of 1.13")
|
||||
}
|
||||
compileOnly("org.jetbrains:annotations:19.0.0")
|
||||
compileClasspath("org.projectlombok:lombok:1.18.12")
|
||||
testCompileOnly("org.projectlombok:lombok:1.18.12")
|
||||
annotationProcessor("org.projectlombok:lombok:1.18.8")
|
||||
@ -108,7 +106,6 @@ subprojects { subproject ->
|
||||
resolutionStrategy {
|
||||
force("junit:junit:4.12")
|
||||
force("com.google.guava:guava:21.0")
|
||||
force("org.jetbrains:annotations:19.0.0")
|
||||
force("com.google.code.findbugs:jsr305:3.0.2")
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user