Export bytearray commented out - TODO in future

This commit is contained in:
Jindra Petřík
2016-09-14 22:56:20 +02:00
parent 4331548f92
commit a4b8a1a993

View File

@@ -172,7 +172,7 @@ public class DebugPanel extends JPanel {
JPopupMenu pm = new JPopupMenu();
//TODO!!
if (v.typeName != null && v.typeName.startsWith("flash.utils::ByteArray")) {
/*if (v.typeName != null && v.typeName.startsWith("flash.utils::ByteArray")) {
JMenu exportMenu = new JMenu("Export %name%".replace("%name%", v.name));
JMenuItem exportByteArray = new JMenuItem("Export bytearray");
exportByteArray.addActionListener((ActionEvent e1) -> {
@@ -181,7 +181,7 @@ public class DebugPanel extends JPanel {
exportMenu.add(exportByteArray);
pm.add(exportMenu);
}
}*/
long watchParentId = vn.parentObjectId;
JMenu addWatchMenu = new JMenu(AppStrings.translate("debug.watch.add").replace("%name%", v.name));