Skip to content

Commit

Permalink
Updates to TODO various TODO messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Jan 28, 2018
1 parent 825b199 commit c1afb8f
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
1 change: 0 additions & 1 deletion src/me/coley/recaf/asm/tracking/TInsnList.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
*
* @author Matt
*/
// TODO: Should get operations cause marking?
public class TInsnList extends InsnList {
private final TMethod method;
/**
Expand Down
2 changes: 0 additions & 2 deletions src/me/coley/recaf/ui/component/internalframe/AccessBox.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
import me.coley.recaf.ui.component.panel.AccessPanel;

/**
* TODO: Have the class window have a definition editor like the members do.
*
* Use the access panel in there then remove this.
*/
@SuppressWarnings("serial")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -535,10 +535,7 @@ private void createEdit(AbstractInsnNode ain, int x, int y) {
}))));
break;
case AbstractInsnNode.FRAME:
// TODO: Should frames even be editable? By default recaf's options
// tell ASM to regenerate them on-export.
//
// FrameNode insnFrame = (FrameNode) ain;
// Not supported
break;
case AbstractInsnNode.LINE:
LineNumberNode insnLine = (LineNumberNode) ain;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private void setupMethodsFrame() {
}
methods.setModel(model);
frameMethods.add(new JScrollPane(methods), BorderLayout.CENTER);
// TODO: Switch to table. A table may be bigger but allows for sorting
// TODO: Option to use table. A table may be bigger but allows for sorting
// of members.
//
// frameMethods.add(new JScrollPane(MemberTable.create(node.methods)),
Expand Down

0 comments on commit c1afb8f

Please sign in to comment.