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 6815808 commit 1652d44Copy full SHA for 1652d44
api/src/main/java/com/velocitypowered/api/util/ModInfo.java
@@ -76,6 +76,12 @@ public static final class Mod {
76
private final String id;
77
private final String version;
78
79
+ /**
80
+ * Creates a new mod info.
81
+ *
82
+ * @param id the mod identifier
83
+ * @param version the mod version
84
+ */
85
public Mod(String id, String version) {
86
this.id = Preconditions.checkNotNull(id, "id");
87
this.version = Preconditions.checkNotNull(version, "version");
0 commit comments