Skip to content

Commit 6c0f661

Browse files
committed
Fix shitty formatting that I blindly accepted from IntelliJ
fuck me
1 parent 96bb9ee commit 6c0f661

File tree

1 file changed

+2
-1
lines changed
  • src/main/java/net/minecraftforge/coremod/api

1 file changed

+2
-1
lines changed

src/main/java/net/minecraftforge/coremod/api/ASMAPI.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,8 @@ public static boolean insertInsnList(MethodNode method, MethodType type, String
349349
*/
350350
public static InsnList listOf(AbstractInsnNode... nodes) {
351351
InsnList list = new InsnList();
352-
for (AbstractInsnNode node : nodes) { list.add(node); }
352+
for (AbstractInsnNode node : nodes)
353+
list.add(node);
353354
return list;
354355
}
355356

0 commit comments

Comments
 (0)