Skip to content

Commit

Permalink
fix checkstyle errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Kappaccinoh committed Mar 25, 2024
1 parent 20e0e7b commit 8c3f20c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
import seedu.address.logic.commands.FindCommand;
import seedu.address.logic.commands.HelpCommand;
import seedu.address.logic.commands.ListCommand;
import seedu.address.logic.commands.QueryDoctorCommand;
import seedu.address.logic.commands.QueryDoctorAppointmentCommand;
import seedu.address.logic.commands.QueryDoctorCommand;
import seedu.address.logic.commands.QueryPatientAppointmentCommand;
import seedu.address.logic.commands.QueryPatientCommand;
import seedu.address.logic.parser.exceptions.ParseException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import java.util.Arrays;

import seedu.address.logic.commands.QueryDoctorAppointmentCommand;
import seedu.address.logic.commands.QueryPatientAppointmentCommand;
import seedu.address.logic.parser.exceptions.ParseException;
import seedu.address.model.appointment.AppointmentContainsDoctorPredicate;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* Represents a Predicate used to test if an Appointment contains specified doctor keywords.
*/
public class AppointmentContainsDoctorPredicate implements Predicate<Appointment>{
public class AppointmentContainsDoctorPredicate implements Predicate<Appointment> {
private final List<String> keywords;

public AppointmentContainsDoctorPredicate(List<String> keywords) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
import seedu.address.logic.commands.FindCommand;
import seedu.address.logic.commands.HelpCommand;
import seedu.address.logic.commands.ListCommand;
import seedu.address.logic.commands.QueryDoctorCommand;
import seedu.address.logic.commands.QueryDoctorAppointmentCommand;
import seedu.address.logic.commands.QueryDoctorCommand;
import seedu.address.logic.commands.QueryPatientAppointmentCommand;
import seedu.address.logic.commands.QueryPatientCommand;
import seedu.address.logic.parser.exceptions.ParseException;
Expand Down

0 comments on commit 8c3f20c

Please sign in to comment.