Remove deprecated stuff

This commit is contained in:
modmuss50
2021-12-04 14:32:48 +00:00
parent 337d17bb92
commit 6d65e120e7
10 changed files with 4 additions and 356 deletions

View File

@@ -31,14 +31,6 @@ import org.gradle.api.logging.LogLevel;
import org.gradle.api.logging.configuration.WarningMode;
public interface DeprecationHelper {
default void replaceWithInLoom0_10(String currentName, String newName) {
toBeRemovedIn(currentName, newName, "Loom 0.10");
}
default void replaceWithInLoom0_11(String currentName, String newName) {
toBeRemovedIn(currentName, newName, "Loom 0.11");
}
default void replaceWithInLoom0_12(String currentName, String newName) {
toBeRemovedIn(currentName, newName, "Loom 0.12");
}