mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-04-02 13:37:45 -05:00
Merge remote-tracking branch 'FabricMC/dev/0.10' into dev/0.10.0
# Conflicts: # src/main/java/net/fabricmc/loom/configuration/providers/minecraft/MinecraftMappedProvider.java
This commit is contained in:
@@ -28,6 +28,8 @@ import java.io.IOException;
|
||||
import java.io.UncheckedIOException;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.nio.file.Path;
|
||||
import java.util.Arrays;
|
||||
import java.util.Objects;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import com.google.gson.JsonObject;
|
||||
@@ -78,4 +80,11 @@ public record AccessWidenerFile(
|
||||
content
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int result = Objects.hash(name, modId);
|
||||
result = 31 * result + Arrays.hashCode(content);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -416,6 +416,10 @@ public class MinecraftMappedProvider extends DependencyProvider {
|
||||
return minecraftMappedJar;
|
||||
}
|
||||
|
||||
public final File getBaseMappedJar() {
|
||||
return minecraftMappedJar;
|
||||
}
|
||||
|
||||
public File getForgeIntermediaryJar() {
|
||||
return forgeIntermediaryJar;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user