http service: remove unused price endpoints

Also remove time from ItemPrice, which is no longer needed now that the endpoint for fetching historic price data is gone
This commit is contained in:
Adam
2021-03-07 23:20:09 -05:00
parent 12a84f4c61
commit b3b7491680
3 changed files with 0 additions and 133 deletions

View File

@@ -24,7 +24,6 @@
*/
package net.runelite.http.api.item;
import java.time.Instant;
import lombok.Data;
@Data
@@ -33,5 +32,4 @@ public class ItemPrice
private int id;
private String name;
private int price;
private Instant time;
}