http api: fix GameItem to have a no arg constructor

This was broken with the lombok update from 1.16 to 1.18 and breaks
deserializing of loot tracker requests.
This commit is contained in:
Adam
2019-01-27 18:33:10 -05:00
parent b671b4cd4e
commit d228add898

View File

@@ -24,9 +24,13 @@
*/ */
package net.runelite.http.api.loottracker; package net.runelite.http.api.loottracker;
import lombok.Value; import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Value @Data
@NoArgsConstructor
@AllArgsConstructor
public class GameItem public class GameItem
{ {
private int id; private int id;