Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
Add NoArgsConstructor annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
rettichlp committed Feb 1, 2023
1 parent ac5fe8a commit d8fdacb
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import com.rettichlp.unicacityaddon.base.enums.faction.Equip;
import joptsimple.internal.Strings;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import net.minecraft.util.math.BlockPos;

Expand All @@ -16,6 +17,7 @@
import java.util.List;
import java.util.Map;

@NoArgsConstructor
@Getter
@Setter
public class Data {
Expand All @@ -37,9 +39,6 @@ public class Data {
private Integer timer = 0;
private List<TodolistEntry> todolist = new ArrayList<>();

public Data() {
}

/**
* Adds the given value <code>i</code> to the <code>bankBalance</code>
*
Expand Down

0 comments on commit d8fdacb

Please sign in to comment.