diff --git a/README.md b/README.md index 8df0e1c..2c72a50 100644 --- a/README.md +++ b/README.md @@ -1,19 +1 @@ -# template - -problem_statement - -## Prerequisite - -- JDK version 18.0.2 - -## How to build - -TBD - -## How to use - -TBD - -## How to test - -TBD +# There's no reason to look at this.... diff --git a/src/main/java/org/bootcamp/TrafficLights/Sign.java b/src/main/java/org/bootcamp/TrafficLights/Sign.java index ce612b5..7b76015 100644 --- a/src/main/java/org/bootcamp/TrafficLights/Sign.java +++ b/src/main/java/org/bootcamp/TrafficLights/Sign.java @@ -16,6 +16,6 @@ public class Sign extends JFrame { this.setPreferredSize(new Dimension(300, 300)); this.setLocationRelativeTo(null); this.setVisible(true); - this.setBackground(Color.BLACK); + this.getContentPane().setBackground(Color.BLACK); } }