From 2012f2bd98c56e79fe3e251782749493a08db1cf Mon Sep 17 00:00:00 2001 From: shockrahwow Date: Mon, 6 May 2019 18:37:34 -0700 Subject: [PATCH] removed stale class --- 338/homework4/Enrolled.java | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 338/homework4/Enrolled.java diff --git a/338/homework4/Enrolled.java b/338/homework4/Enrolled.java deleted file mode 100644 index 8f0893c..0000000 --- a/338/homework4/Enrolled.java +++ /dev/null @@ -1,13 +0,0 @@ -// this class describes the relation between a student and a given class -// We allow students to be able to enroll in multiple classes with this class -public class Enrolled { - public int studentID; - public String studentName; - public int courseID; - public int courseTitle; - - Enrolled(int sID, String sName, int cID, String cTitle) { - this.studentID = sId; - this.studentName - } -}