From 6e26a84015410149d371b8be050f6ee782136534 Mon Sep 17 00:00:00 2001
From: Isaac Wu <isaacwu@cs.washington.edu>
Date: Tue, 6 Feb 2024 14:14:52 -0800
Subject: [PATCH] Fixed compiler issues

---
 Products.java | 3 ++-
 Staff.java    | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/Products.java b/Products.java
index e54f653..d8453da 100644
--- a/Products.java
+++ b/Products.java
@@ -77,7 +77,8 @@ public class Products { /* a good class, but not as good as cse391 */
 	    "rolling grass fields, blue skies, white clouds",
 	    100000
         );
-    
+    }
+
     public Product aamangusProduct() {
     	return new Product(
 		"Broody Chicken",
diff --git a/Staff.java b/Staff.java
index 01eb01e..513994b 100644
--- a/Staff.java
+++ b/Staff.java
@@ -96,6 +96,7 @@ public class Staff {
 	    "icon.jpeg",
 	    "angrily studying"
        );
+    }
 
     public Employee aamangus() {
     	return new Employee(
-- 
GitLab