Last analyzed f8d215e 3 months ago
Default analysis branch is
Currently analyzing run
Static fields of the parent class should not be accessed through child class instances JAVA-W1030
Anti-pattern
4 months ago5 months old
EXIT_ON_CLOSE should be accessed through WindowConstants, not JFrame
 46	 * Create the frame.
 47	 */
 48	public ShapeDisplayer() {
 49		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 50		setBounds(100, 100, 650, 650);
 51		final GridBagLayout gridBagLayout = new GridBagLayout();
 52		gridBagLayout.columnWidths = new int[] { 1, 0 };