Skip to content

Commit 1652d44

Browse files
committed
Fix checkstyle 💩
1 parent 6815808 commit 1652d44

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

api/src/main/java/com/velocitypowered/api/util/ModInfo.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ public static final class Mod {
7676
private final String id;
7777
private final String version;
7878

79+
/**
80+
* Creates a new mod info.
81+
*
82+
* @param id the mod identifier
83+
* @param version the mod version
84+
*/
7985
public Mod(String id, String version) {
8086
this.id = Preconditions.checkNotNull(id, "id");
8187
this.version = Preconditions.checkNotNull(version, "version");

0 commit comments

Comments
 (0)