fix fake station
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user