@return if that Liquid is distilled Water
(IFluidTank aFluid)
| 139 | |
| 140 | /** @return if that Liquid is distilled Water */ |
| 141 | @Deprecated public static boolean distw(IFluidTank aFluid) {return aFluid != null && distw(aFluid.getFluid());} |
| 142 | /** @return if that Liquid is distilled Water */ |
| 143 | @Deprecated public static boolean distw(FluidStack aFluid) {return aFluid != null && distw(aFluid.getFluid());} |
| 144 | /** @return if that Liquid is distilled Water */ |
no test coverage detected