We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9fe585 commit ec96335Copy full SHA for ec96335
src/main/java/scala/tools/asm/tree/MethodNode.java
@@ -570,10 +570,7 @@ public void visitEnd() {
570
*/
571
protected LabelNode getLabelNode(final Label label) {
572
if (!(label.info instanceof LabelNode)) {
573
- // Patch in scala-asm: changed `new LabelNode()` to `new LabelNode(l)`
574
- // TODO: check if this can go upstream, or if it is still discouraged
575
- // https://mail.ow2.org/wws/arc/asm/2011-07/msg00032.html
576
- label.info = new LabelNode(label);
+ label.info = new LabelNode();
577
}
578
return (LabelNode) label.info;
579
0 commit comments