File tree 1 file changed +2
-2
lines changed
src/main/java/net/minecraftforge/coremod/api
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -556,15 +556,15 @@ public static String methodNodeToString(MethodNode node) {
556
556
* @param insn The instruction to convert.
557
557
* @return The string representation of the instruction.
558
558
*/
559
- public static String insnToString (InsnNode insn ) {
559
+ public static String insnToString (AbstractInsnNode insn ) {
560
560
Textifier text = new Textifier ();
561
561
insn .accept (new TraceMethodVisitor (text ));
562
562
return toString (text );
563
563
}
564
564
565
565
/**
566
566
* Converts a {@link InsnList} to a string representation, displaying each instruction in the list similar to
567
- * {@link #insnToString(InsnNode )}.
567
+ * {@link #insnToString(AbstractInsnNode )}.
568
568
*
569
569
* @param list The list to convert.
570
570
* @return The string
You can’t perform that action at this time.
0 commit comments