# HG changeset patch # User Nathan Phillip Brink # Date 2012-12-11 01:49:24 # Node ID 3bdee2bad3fb2227ca559eb121344fe6f5c4ca41 # Parent bbb436f2315b697ef68f9e8a30f6e3369fe4a52e Finish cleaning up some no-longer-used functions from calvin.crawl.inc unused since bbb436f2315b. diff --git a/school.d/calvin.crawl.inc b/school.d/calvin.crawl.inc --- a/school.d/calvin.crawl.inc +++ b/school.d/calvin.crawl.inc @@ -52,22 +52,3 @@ function calvin_crawl_semester(array $sc { return school_crawl_webadvisor_semester($school, $semester, $school_crawl_log); } - -/** - * \brief - * Add a course to a semester if that semester doesn't yet have this - * course. - * - * \param $semester - * The semester to which the course should be appended. - * \param $deparmtent - * The department of the course to add. - * \param $course_id - * The course_id which, with the department string, forms a - * fully-qualified course_id. - */ -function calvin_crawl_course_add_(Semester $semester, $department, $course_id, $title) -{ - if ($semester->class_get($department, $course_id) == NULL) - $semester->class_add(new Course($department . '-' . $course_id, $title)); -}