Archived
0

missing changes

This commit is contained in:
iMoHax
2014-11-18 13:18:43 +03:00
parent 5ffe7c4b3a
commit fec9b84d37

View File

@@ -155,6 +155,11 @@ public abstract class AbstractItemStat implements ItemStat {
return false;
}
@Override
public Collection<SERVICE_TYPE> getServices() {
return Collections.emptyList();
}
@Override
public Offer addOffer(OFFER_TYPE type, Item item, double price, long count) {
throw new UnsupportedOperationException("Is fake vendor, change unsupported");
@@ -172,7 +177,7 @@ public abstract class AbstractItemStat implements ItemStat {
@Override
public Collection<Offer> get(OFFER_TYPE type) {
return null;
return Collections.emptyList();
}
@Override