Skip to content

Commit

Permalink
Updated jar file and getLectures parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
jimvargas committed Nov 23, 2016
1 parent 52ab854 commit 941d31a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
Binary file modified CurriculumScraper-v1.0.1.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -606,18 +606,12 @@ public UCSBLecture getLecture(String Title, String quarter) {
return null; // STUB!
}

/** return an ArrayList of UCSBLecture objects given a course number and quarter
@param courseNum 13 character course num ddddddddnnnxx where
dddddddd is the department, extended with spaces if
needed, nnn is the course number, right justified,
and xx is the extension if any. Examples:
"CMPSC 5JA", "CMPSC 130A ","MATH 3C "
@param quarter quarter in yyyyQ format, where Q is 1,2,3,4 (1=W, 2=S, 3=M, 4=F)]
@return an ArrayList of UCSBLecture objects for that courseNum.
/** return an ArrayList of UCSBLecture objects
@return an ArrayList of UCSBLecture objects.
If there are none, an empty ArrayList is returned.
*/

public ArrayList<UCSBLecture> getLectures(String courseNum, String quarter) {
public ArrayList<UCSBLecture> getLectures() {
ArrayList<UCSBLecture> retval = new ArrayList<UCSBLecture>(lectures.size());
for (UCSBLecture l: lectures) {
retval.add(new UCSBLecture(l));
Expand Down

0 comments on commit 941d31a

Please sign in to comment.