less redundancy

This commit is contained in:
Downforce Agent 2024-06-29 00:55:16 -05:00
parent fcda7b8cf4
commit b9743ee456

View File

@ -343,30 +343,30 @@ public class MissPiggy implements ActionListener {
public void removeAllGUI() { public void removeAllGUI() {
// todo warning dialog that nukes list when Yes is clicked // todo warning dialog that nukes list when Yes is clicked
JOptionPane.showMessageDialog(frame, "Unimplemented.", "Unimplemented", JOptionPane.INFORMATION_MESSAGE); throwUnimplemented();
} }
public void optionsGUI() { public void optionsGUI() {
// todo settings page w/ reset switch // todo settings page w/ reset switch
JOptionPane.showMessageDialog(frame, "Unimplemented.", "Unimplemented", JOptionPane.INFORMATION_MESSAGE); throwUnimplemented();
} }
public void generatorGUI() { public void generatorGUI() {
// todo mod packer // todo mod packer
JOptionPane.showMessageDialog(frame, "Unimplemented.", "Unimplemented", JOptionPane.INFORMATION_MESSAGE); throwUnimplemented();
} }
public void metaEditorGUI() { public void metaEditorGUI() {
// todo tag editor // todo tag editor
JOptionPane.showMessageDialog(frame, "Unimplemented.", "Unimplemented", JOptionPane.INFORMATION_MESSAGE); throwUnimplemented();
} }
public void aboutGUI() { public void aboutGUI() {
// todo about page // todo about page
JOptionPane.showMessageDialog(frame, "Unimplemented.", "Unimplemented", JOptionPane.INFORMATION_MESSAGE); throwUnimplemented();
} }
public void throwUnimplemented() { public void throwUnimplemented() {
JOptionPane.showMessageDialog(frame, "Unimplemented.", "Unimplemented", JOptionPane.INFORMATION_MESSAGE); JOptionPane.showMessageDialog(frame, "Unimplemented.\nSee README at https://git.worlio.com/bonkmaykr/firestar", "Unimplemented", JOptionPane.INFORMATION_MESSAGE);
} }
} }