Remove ; after record definition

This commit is contained in:
tastybento 2024-03-15 18:52:37 -07:00
parent 5ad2ba1cd9
commit db2b97d2fc
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ import com.google.gson.annotations.Expose;
public class BlueprintEntity {
public record MythicMobRecord(String type, String displayName, double level, float power, String stance) {
};
}
// GSON can serialize records, but the record class needs to be know in advance. So this breaks out the record entries
@Expose