Reformat and clean up "client" package

This commit is contained in:
P0nk
2021-09-09 23:21:39 +02:00
parent 07f55fa53c
commit 9bf1b68924
108 changed files with 1770 additions and 1543 deletions

View File

@@ -25,9 +25,9 @@ public class SkillMacro {
private int skill1;
private int skill2;
private int skill3;
private String name;
private int shout;
private int position;
private final String name;
private final int shout;
private final int position;
public SkillMacro(int skill1, int skill2, int skill3, String name, int shout, int position) {
this.skill1 = skill1;
@@ -49,7 +49,7 @@ public class SkillMacro {
public int getSkill3() {
return skill3;
}
public void setSkill1(int skill) {
skill1 = skill;
}