Skip to content

Commit

Permalink
Obey checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
vlasival committed Nov 22, 2023
1 parent a3450b6 commit f50aa2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions task_1_4_1/app/src/main/java/task/GradeBook.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public void setStudentName(String studentName) throws GradeException {
}
this.studentName = studentName;
}

/**
* Adds a new grade entry to the GradeBook for a specific semester.
*
Expand Down
2 changes: 1 addition & 1 deletion task_1_4_1/app/src/main/java/task/MarksPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public MarksPage() {
* @param subject The name of the subject.
* @param mark The grade for this subject.
* @param differentiated True if the grading is differentiated, false otherwise.
* @throws GradeException Special exception for the GradeBook class containing an informative message.
* @throws GradeException Special exception for the GradeBook class containing a message.
*/
public void addNote(String subject, int mark, boolean differentiated) throws GradeException {
Grade newNote = new Grade(subject, mark, differentiated);
Expand Down

0 comments on commit f50aa2d

Please sign in to comment.