Skip to content

Commit 44ff252

Browse files
committed
Merge branch 'master' into lsn6-demo
2 parents fe0f44d + f401116 commit 44ff252

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/org/launchcode/java/demos/lsn4school/Student.java

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,11 @@ public String studentInfo() {
2828
return (this.name + " has a GPA of: " + this.gpa);
2929
}
3030

31-
// TODO: Complete the getGradeLevel method here:
32-
public String getGradeLevel() {
33-
// Determine the grade level of the student based on numberOfCredits
34-
// replace this return statement
35-
return "";
36-
}
31+
32+
// TODO: Uncomment and complete the getGradeLevel method here:
33+
// public String getGradeLevel() {
34+
// // Determine the grade level of the student based on numberOfCredits
35+
// }
3736

3837
// TODO: Complete the addGrade method.
3938
public void addGrade(int courseCredits, double grade) {

0 commit comments

Comments
 (0)