Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,6 @@
public final class NeoDevFacade {
private NeoDevFacade() {}

public static void setupRuns(Project project,
Provider<Directory> argFileDir,
DomainObjectCollection<RunModel> runs,
Object runTemplatesSourceFile,
Consumer<Configuration> configureModulePath,
Consumer<Configuration> configureAdditionalClasspath,
Provider<RegularFile> assetPropertiesFile) {
ModDevRunWorkflow.setupRuns(
project,
Branding.NEODEV,
argFileDir,
runs,
runTemplatesSourceFile,
configureModulePath,
configureAdditionalClasspath,
assetPropertiesFile,
// This overload of the method was only used by NeoForge 1.21.3
VersionCapabilitiesInternal.ofMinecraftVersion("1.21.3"));
}

public static void setupRuns(Project project,
Provider<Directory> argFileDir,
DomainObjectCollection<RunModel> runs,
Expand All @@ -64,30 +44,6 @@ public static void setupRuns(Project project,
neoFormVersion.map(VersionCapabilitiesInternal::ofNeoFormVersion).getOrElse(VersionCapabilitiesInternal.latest()));
}

public static void setupTestTask(Project project,
Provider<Directory> argFileDir,
TaskProvider<Test> testTask,
Object runTemplatesSourceFile,
Provider<Set<ModModel>> loadedMods,
Provider<ModModel> testedMod,
Consumer<Configuration> configureModulePath,
Consumer<Configuration> configureAdditionalClasspath,
Provider<RegularFile> assetPropertiesFile) {
ModDevRunWorkflow.setupTestTask(
project,
Branding.NEODEV,
runTemplatesSourceFile,
testTask,
loadedMods,
testedMod,
argFileDir,
configureModulePath,
configureAdditionalClasspath,
assetPropertiesFile,
// This overload of the method was only used by NeoForge before 1.21.9
VersionCapabilitiesInternal.ofMinecraftVersion("1.21.8"));
}

public static void setupTestTask(Project project,
Provider<Directory> argFileDir,
TaskProvider<Test> testTask,
Expand Down
Loading