This commit is contained in:
JKetelaar
2014-12-26 12:10:22 +01:00
parent a2d13b2fa9
commit 9379c73da0
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ import java.net.URLClassLoader;
* @author JKetelaar
*/
public class Executer {
/* TODO Move to Parabot client */
/* TODO Move to client */
public void getRandoms() {
Core.verbose("Downloading randoms");
@@ -44,7 +44,7 @@ public class Executer {
Core.verbose("Parsed random(s)!");
} catch (NoSuchMethodException | InstantiationException | IllegalAccessException | InvocationTargetException | ClassNotFoundException | MalformedURLException e) {
e.printStackTrace();
Core.verbose("Failed to random(s)...");
Core.verbose("Failed to parse random(s)...");
}
}
+1 -1
View File
@@ -20,7 +20,7 @@ public class RandomUI implements ActionListener {
public void openFrame(ArrayList<String> randoms) {
frame = new JFrame();
frame.setBounds(100, 100, 351, 100 + (randoms.size() * 35));
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
frame.getContentPane().setLayout(null);
JButton btnSubmit = new JButton("Submit");