Skip to content

Commit

Permalink
Fix checkstyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jessica2828 committed Oct 9, 2024
1 parent f3cb161 commit 8110ce6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/seedu/address/logic/commands/DeleteCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ public class DeleteCommand extends Command {
public static final String MESSAGE_PERSON_NOT_FOUND = "No student is found with Student ID: %1$s";
private final StudentId studentId;

/**
* Creates a DeleteCommand to delete the person identified by the specified {@code StudentId}.
*
* @param studentId The student ID of the person to be deleted.
* @throws NullPointerException if the {@code studentId} is null.
*/
public DeleteCommand(StudentId studentId) {
requireNonNull(studentId);
this.studentId = studentId;
Expand Down

0 comments on commit 8110ce6

Please sign in to comment.