(CustomItemProperties[][] cipsArr, List<CustomItemProperties> list)
| 262 | } |
| 263 | |
| 264 | private static void addAll(CustomItemProperties[][] cipsArr, List<CustomItemProperties> list) |
| 265 | { |
| 266 | if (cipsArr != null) |
| 267 | { |
| 268 | for (int i = 0; i < cipsArr.length; ++i) |
| 269 | { |
| 270 | CustomItemProperties[] acustomitemproperties = cipsArr[i]; |
| 271 | |
| 272 | if (acustomitemproperties != null) |
| 273 | { |
| 274 | for (int j = 0; j < acustomitemproperties.length; ++j) |
| 275 | { |
| 276 | CustomItemProperties customitemproperties = acustomitemproperties[j]; |
| 277 | |
| 278 | if (customitemproperties != null) |
| 279 | { |
| 280 | list.add(customitemproperties); |
| 281 | } |
| 282 | } |
| 283 | } |
| 284 | } |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | private static Map makeAutoImageProperties(IResourcePack rp) |
| 289 | { |
no test coverage detected