(EquipmentFacade equipment)
| 1482 | } |
| 1483 | |
| 1484 | @Override |
| 1485 | public float getCost(EquipmentFacade equipment) |
| 1486 | { |
| 1487 | if (equipment instanceof Equipment) |
| 1488 | { |
| 1489 | return ((Equipment) equipment).getCost(pc).floatValue(); |
| 1490 | } |
| 1491 | return 0; |
| 1492 | } |
| 1493 | |
| 1494 | @Override |
| 1495 | public float getWeight(EquipmentFacade equipment) |
nothing calls this directly
no test coverage detected