Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Sep 23, 2023
1 parent 157abbb commit 88edb5c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ fun Project.setupServerProject(
val filterProjectDir by tasks.registering<FilterProjectDir> {
inputSrcDir.set(file("src/main/java"))
inputResourcesDir.set(file("src/main/resources"))
vanillaJar.set(parent.layout.file(parent.files(remappedJar).elements.map { it.single().asFile })) // unlink dependency on upstream clone task for patcher (hack); it's implicitly handled when we get upstream data
vanillaJar.set(
// unlink dependency on upstream clone task for patcher (hack); it's implicitly handled when we get upstream data
parent.layout.file(parent.files(remappedJar).elements.map { it.single().asFile })
)
outputJar.set(parent.layout.cache.resolve(FINAL_FILTERED_REMAPPED_JAR))
}

Expand Down

0 comments on commit 88edb5c

Please sign in to comment.