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,14 +1,10 @@
package emu.grasscutter.data.common;
import lombok.Getter;
@Getter
public class PropGrowCurve {
private String type;
private String growCurve;
public String getType() {
return this.type;
}
public String getGrowCurve() {
return this.growCurve;
}
}