Skip to content

Commit

Permalink
Revert "Volunteer Management"
Browse files Browse the repository at this point in the history
  • Loading branch information
Kratious committed Oct 23, 2018
1 parent 84d9be0 commit b40c622
Show file tree
Hide file tree
Showing 88 changed files with 12 additions and 5,495 deletions.
2 changes: 0 additions & 2 deletions src/main/java/seedu/address/commons/core/Messages.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ public class Messages {

// Volunteers messages
public static final String MESSAGE_INVALID_PERSON_DISPLAYED_INDEX = "The person index provided is invalid";
public static final String MESSAGE_INVALID_VOLUNTEER_DISPLAYED_INDEX = "The volunteer index provided is invalid";
public static final String MESSAGE_VOLUNTEERS_LISTED_OVERVIEW = "%1$d volunteers listed!";
public static final String MESSAGE_PERSONS_LISTED_OVERVIEW = "%1$d persons listed!";

// Event messages
Expand Down
4 changes: 0 additions & 4 deletions src/main/java/seedu/address/logic/Logic.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import seedu.address.model.event.Event;
import seedu.address.model.person.Person;
import seedu.address.model.record.Record;
import seedu.address.model.volunteer.Volunteer;

/**
* API of the Logic component
Expand All @@ -25,9 +24,6 @@ public interface Logic {
/** Returns an unmodifiable view of the filtered list of persons */
ObservableList<Person> getFilteredPersonList();

/** Returns an unmodifiable view of the filtered list of volunteers */
ObservableList<Volunteer> getFilteredVolunteerList();

/** Returns an unmodifiable view of the filtered list of events */
ObservableList<Event> getFilteredEventList();

Expand Down
6 changes: 0 additions & 6 deletions src/main/java/seedu/address/logic/LogicManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import seedu.address.model.event.Event;
import seedu.address.model.person.Person;
import seedu.address.model.record.Record;
import seedu.address.model.volunteer.Volunteer;

/**
* The main LogicManager of the app.
Expand Down Expand Up @@ -48,11 +47,6 @@ public ObservableList<Person> getFilteredPersonList() {
return model.getFilteredPersonList();
}

@Override
public ObservableList<Volunteer> getFilteredVolunteerList() {
return model.getFilteredVolunteerList();
}

@Override
public ObservableList<Event> getFilteredEventList() {
return model.getFilteredEventList();
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit b40c622

Please sign in to comment.