]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/MigrationTools/org/tianocore/migration/FirstPanel.java
remove MigrationTools.java
[mirror_edk2.git] / Tools / Source / MigrationTools / org / tianocore / migration / FirstPanel.java
index 77162e854a07eb4153ecb1acf931b4ef1aaeb125..b933dac0ea79d6506a98b197573d237980214aac 100644 (file)
@@ -65,11 +65,11 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
                \r
                mibox = new JCheckBox("Print ModuleInfo", false);\r
                mibox.addItemListener(this);\r
-               MigrationTool.printModuleInfo = false;\r
+               ModuleInfo.printModuleInfo = false;\r
                \r
                criticbox = new JCheckBox("Run Critic", true);\r
                criticbox.addItemListener(this);\r
-               MigrationTool.doCritic = true;\r
+               ModuleInfo.doCritic = true;\r
                \r
                defaultpathbox = new JCheckBox("Use Default Output Path", true);\r
                defaultpathbox.addItemListener(this);\r
@@ -211,16 +211,16 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
                }\r
        } else if (e.getSource() == mibox) {\r
                if (e.getStateChange() == ItemEvent.DESELECTED) {\r
-                       MigrationTool.printModuleInfo = false;\r
+                       ModuleInfo.printModuleInfo = false;\r
                } else if (e.getStateChange() == ItemEvent.SELECTED) {\r
-                       MigrationTool.printModuleInfo = true;\r
+                       ModuleInfo.printModuleInfo = true;\r
                }\r
        } else if (e.getSource() == criticbox) {\r
                if (e.getStateChange() == ItemEvent.DESELECTED) {\r
-                       MigrationTool.doCritic = false;\r
+                       ModuleInfo.doCritic = false;\r
                        System.out.println("criticbox DESELECTED");\r
                } else if (e.getStateChange() == ItemEvent.SELECTED) {\r
-                       MigrationTool.doCritic = true;\r
+                       ModuleInfo.doCritic = true;\r
                        System.out.println("criticbox SELECTED");\r
                }\r
        } else if (e.getSource() == defaultpathbox) {\r