Skip to content

Commit

Permalink
Revert "Fix server only jar, closes #966"
Browse files Browse the repository at this point in the history
This reverts commit eb0c459.
  • Loading branch information
modmuss50 committed Oct 16, 2023
1 parent eb0c459 commit 39841d8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
import java.util.function.Function;
Expand Down Expand Up @@ -128,7 +127,7 @@ private void deleteSimilarJars(Path jar) throws IOException {
@Override
protected String getName(String name) {
// Hash the cache value so that we don't have to process the same JAR multiple times for many projects
return "minecraft-%s-%s".formatted(name, jarProcessorManager.getJarHash()).toLowerCase(Locale.ROOT);
return "minecraft-%s-%s".formatted(name, jarProcessorManager.getJarHash());
}

@Override
Expand Down

0 comments on commit 39841d8

Please sign in to comment.