From a52f89a5092d347797cfd0893fc163233160e9e1 Mon Sep 17 00:00:00 2001 From: Tyler Ferrari Date: Thu, 4 May 2023 02:23:52 +0000 Subject: Revert "rearange some files" This reverts commit 6a10a65a0dbcd0540202479a02e4f91881791d6b --- apcs/Gui.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'apcs/Gui.java') diff --git a/apcs/Gui.java b/apcs/Gui.java index b6fb5a1..934c371 100644 --- a/apcs/Gui.java +++ b/apcs/Gui.java @@ -5,8 +5,6 @@ *Description: */ package apcs; -import java.awt.Graphics; -import java.awt.geom.RoundRectangle2D; import javax.swing.JButton; import javax.swing.JFrame; @@ -19,7 +17,7 @@ public class Gui { JFrame frame=new JFrame(); // Creating Button - JButton b=new TButton("Click Me.."); + JButton b=new JButton("Click Me.."); /* This method specifies the location and size * of button. In method setBounds(x, y, width, height) * x,y) are cordinates from the top left @@ -30,8 +28,6 @@ public class Gui { //Adding button onto the frame frame.add(b); - - // Setting Frame size. This is the window size frame.setSize(600,500); -- cgit v1.2.3