Skip to content

Commit

Permalink
Fix bug where editing insns adds a method (caused by copy/paste ignor…
Browse files Browse the repository at this point in the history
…ance)
  • Loading branch information
Col-E committed May 30, 2018
1 parent 6407664 commit c43d9d8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/me/coley/recaf/ui/FxWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,6 @@ public int compare(Type[] o1, Type[] o2) {
}));
setContextMenu(ctxBase);
ctx.getItems().add(new ActionMenuItem(Lang.get("ui.bean.method.instructions.name"), () -> {
methods.add(new MethodNode(0, "temp", "()V", null, null));
MethodNode mn = getSelectionModel().getSelectedItem();
Bus.INSTANCE.post(new InsnOpenEvent(owner, mn, null));
}));
Expand Down

0 comments on commit c43d9d8

Please sign in to comment.