refactor(lombok): add Getter where possible

This commit is contained in:
Breno A.
2024-06-09 09:52:49 -03:00
Unverified
parent 7ee644c794
commit 8f4120fcd3
200 changed files with 708 additions and 1401 deletions
@@ -1,19 +1,11 @@
package emu.grasscutter.data.common;
import lombok.Getter;
@Getter
public class CurveInfo {
private String type;
private String arith;
private float value;
public String getType() {
return type;
}
public String getArith() {
return arith;
}
public float getValue() {
return value;
}
}