Skip to content

Commit efecd6a

Browse files
committed
format: spotless ❤️
1 parent db40432 commit efecd6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/gregtech/api/pipenet/block/BlockPipe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public static Cuboid6 getCoverSideBox(EnumFacing side, float thickness) {
139139
@SuppressWarnings({ "deprecation", "unchecked" })
140140
public ItemStack getItem(@NotNull World world, @NotNull BlockPos pos, @NotNull IBlockState state) {
141141
var te = world.getTileEntity(pos);
142-
if (!(te instanceof IPipeTile<?, ?> pipeTile)) return ItemStack.EMPTY;
142+
if (!(te instanceof IPipeTile<?, ?>pipeTile)) return ItemStack.EMPTY;
143143
return getDropItem((IPipeTile<PipeType, NodeDataType>) pipeTile);
144144
}
145145

0 commit comments

Comments
 (0)