Fix checkstyle 💩

This commit is contained in:
Nassim Jahnke
2025-01-31 19:35:43 +01:00
parent 6815808d32
commit 1652d44f5f

View File

@@ -76,6 +76,12 @@ public final class ModInfo {
private final String id;
private final String version;
/**
* Creates a new mod info.
*
* @param id the mod identifier
* @param version the mod version
*/
public Mod(String id, String version) {
this.id = Preconditions.checkNotNull(id, "id");
this.version = Preconditions.checkNotNull(version, "version");