| 341 | } |
| 342 | |
| 343 | @Deprecated public static FluidStack[] copyArray(FluidStack... aFluids) { |
| 344 | FluidStack[] rStacks = new FluidStack[aFluids.length]; |
| 345 | for (int i = 0; i < aFluids.length; i++) if (aFluids[i] != null) rStacks[i] = aFluids[i].copy(); |
| 346 | return rStacks; |
| 347 | } |
| 348 | |
| 349 | @Deprecated public static final Map<ItemStackContainer, FluidContainerData> sFilled2Data = FL.FULL_TO_DATA; |
| 350 | @Deprecated public static final Map<ItemStackContainer, Map<String, FluidContainerData>> sEmpty2Fluid2Data = FL.EMPTY_TO_FLUID_TO_DATA; |