We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b0afe1 commit 25d40a8Copy full SHA for 25d40a8
1 file changed
json-data-utils/src/main/java/net/minecraftforge/util/data/json/LauncherManifest.java
@@ -6,6 +6,8 @@
6
7
import java.net.URL;
8
9
+import org.jetbrains.annotations.Nullable;
10
+
11
/** Represents the launcher manifest for Minecraft versions. */
12
public class LauncherManifest {
13
/** All Minecraft version manifest infos. */
@@ -15,6 +17,9 @@ public class LauncherManifest {
15
17
public static class VersionInfo {
16
18
public String id;
19
public URL url;
20
+ /** Added in version_manifest_v2.json, so possibly null. */
21
+ @Nullable
22
+ public String sha1;
23
}
24
25
/**
0 commit comments