Commit 161b04a3 authored by NewbieOrange's avatar NewbieOrange
Browse files

Fix document error

parent 729bf986
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -80,15 +80,15 @@ public interface CourseService {
     */
    void removeCourseSectionClass(int classId);

    List<Course> getAllCourses();

    /**
     * Return all satisfied CourseSections.
     * We will compare the all other fields in CourseSection besides the id.
     * @param courseId if the key is non-existent, please throw an EntityNotFoundException.
     * @param semesterId
     * @param semesterId if the key is non-existent, please throw an EntityNotFoundException.
     * @return
     */
    List<Course> getAllCourses();

    List<CourseSection> getCourseSectionsInSemester(String courseId, int semesterId);

    /**