Skip to content
Permalink
6039988f3e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (10 sloc) 312 Bytes
import javax.swing.JFrame;
import javax.swing.JPanel;
public class LinuxTestMain{
public static void main(String[] args) {
JFrame frame = new JFrame("y u no work on linux");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel container = new JPanel();
container.add(new TestGui());
}
}