Skip to content

Commit

Permalink
Removed unused imports, made new line for a line > 120 characters.
Browse files Browse the repository at this point in the history
  • Loading branch information
wynonaK committed Mar 26, 2018
1 parent 7187acb commit 5508036
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions src/test/java/seedu/address/model/AddressBookTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import static seedu.address.logic.commands.CommandTestUtil.VALID_TAG_FRIEND;
import static seedu.address.logic.commands.CommandTestUtil.VALID_TAG_HUSBAND;
import static seedu.address.logic.commands.CommandTestUtil.VALID_TAG_UNUSED;
// import static seedu.address.testutil.TypicalAppointments.ALLY;
import static seedu.address.testutil.TypicalAppointments.ALLY;
import static seedu.address.testutil.TypicalPersons.ALICE;
import static seedu.address.testutil.TypicalPersons.AMY;
Expand All @@ -21,7 +20,6 @@
import org.junit.Test;
import org.junit.rules.ExpectedException;

import javafx.beans.binding.ObjectExpression;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import seedu.address.model.appointment.Appointment;
Expand Down
5 changes: 2 additions & 3 deletions src/test/java/seedu/address/testutil/AppointmentBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
import seedu.address.model.appointment.Appointment;
import seedu.address.model.appointment.Remark;
import seedu.address.model.person.Nric;
import seedu.address.model.person.Person;
import seedu.address.model.petpatient.PetPatient;
import seedu.address.model.petpatient.PetPatientName;
import seedu.address.model.tag.Tag;
import seedu.address.model.util.SampleDataUtil;
Expand Down Expand Up @@ -67,7 +65,8 @@ public AppointmentBuilder withPetPatientName(String petPatientName) {
}

/**
* Parses the {@code appointmentTags} into a {@code Set<Tag>} and set it to the {@code Appointment} that we are building.
* Parses the {@code appointmentTags} into a {@code Set<Tag>}
* and set it to the {@code Appointment} that we are building.
*/
public AppointmentBuilder withAppointmentTags(String ... appointmentTags) {
this.appointmentTags = SampleDataUtil.getTagSet(appointmentTags);
Expand Down

0 comments on commit 5508036

Please sign in to comment.