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:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user