Archived
0

fix fake station

This commit is contained in:
Mo
2015-10-04 22:11:51 +03:00
parent d6b45a9ec8
commit 12d826d750

View File

@@ -238,7 +238,7 @@ public class ModelFabric {
@Override @Override
public boolean hasService(SERVICE_TYPE service) { public boolean hasService(SERVICE_TYPE service) {
throw new UnsupportedOperationException("Is fake system, unsupported"); return false;
} }
@Override @Override
@@ -283,12 +283,12 @@ public class ModelFabric {
@Override @Override
public boolean hasSell(ItemModel item) { public boolean hasSell(ItemModel item) {
throw new UnsupportedOperationException("Is fake system, unsupported"); return false;
} }
@Override @Override
public boolean hasBuy(ItemModel item) { public boolean hasBuy(ItemModel item) {
throw new UnsupportedOperationException("Is fake system, unsupported"); return false;
} }
@Override @Override
@@ -389,7 +389,7 @@ public class ModelFabric {
@Override @Override
public boolean isMarketItem() { public boolean isMarketItem() {
throw new UnsupportedOperationException("Is fake item, unsupported"); return false;
} }
@Override @Override