Refactor FirstRun to License

This commit is contained in:
skylarmt 2015-02-16 18:51:20 -07:00
parent 52030abb0d
commit 0862347ee3
3 changed files with 3 additions and 3 deletions

View File

@ -62,12 +62,12 @@ import static net.apocalypselabs.symat.MainGUI.API_URL;
* *
* @author Skylar * @author Skylar
*/ */
public class FirstRun extends javax.swing.JInternalFrame { public class License extends javax.swing.JInternalFrame {
/** /**
* Creates new form FirstRun * Creates new form FirstRun
*/ */
public FirstRun() { public License() {
initComponents(); initComponents();
} }

View File

@ -176,7 +176,7 @@ public class MainGUI extends javax.swing.JFrame {
} }
if (!licValid) { if (!licValid) {
licenseRestrict(true); licenseRestrict(true);
loadFrame(new FirstRun()); loadFrame(new License());
loaded = true; loaded = true;
} }
} }