Skip to content

Commit

Permalink
Merge pull request #6 from chris-cornwall/assign1
Browse files Browse the repository at this point in the history
Update Module to accept array of students
  • Loading branch information
chris-cornwall authored Oct 12, 2017
2 parents 15759d4 + 1704da1 commit 47870fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/mycompany/softeng_assign1/Module.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Module {
private String id;
private ArrayList <Student> students;

public Module(String name, String id, ArrayList <Student> students){
public Module(String name, String id, ArrayList<Student> students){

this.name = name;
this.id = id;
Expand Down

0 comments on commit 47870fe

Please sign in to comment.