Does this item fit in this container @param aTypeList The type list @param aQuant The total number of the item @return Does the item fit
(final SortedSet<String> aTypeList, final Float aQuant)
| 4159 | * @return Does the item fit |
| 4160 | */ |
| 4161 | private boolean checkContainerCapacity(final SortedSet<String> aTypeList, final Float aQuant) |
| 4162 | { |
| 4163 | |
| 4164 | return Capacity.ANY.equals(get(ObjectKey.TOTAL_CAPACITY)) || !("".equals(pickChildType(aTypeList, aQuant))); |
| 4165 | } |
| 4166 | |
| 4167 | private List<EquipmentModifier> cloneEqModList(Equipment other, boolean primary) |
| 4168 | { |
no test coverage detected