Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import javax.swing.SwingUtilities;
  2. // import whatever.else.*;
  3.  
  4. public class Whatever {
  5.     public static void main(String[] args) {
  6.         SwingUtilities.invokeLater(new Runnable() {
  7.             @Override
  8.             public void run() {
  9.                 // put your crap here
  10.                 // apparently this makes your code run faster
  11.             }  
  12.         });
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement