Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[T4A5][W10-A3]Li Chengcheng #1074

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Accidentally reversed hunk
AndyLee13 committed Feb 22, 2017
commit 8dfa669c9a9316c6ae4b683ec7d97f8e3e1d3c02
7 changes: 3 additions & 4 deletions src/seedu/addressbook/data/tag/Tagging.java
Original file line number Diff line number Diff line change
@@ -8,13 +8,12 @@ public enum TaggingType {ADD, DELETE};
private Person _person;
private Tag _tag;
private TaggingType _taggingType;

public static ArrayList<Tagging> Taggings;

public static ArrayList<Tagging> Taggings;

public Tagging(Person person, Tag tag, TaggingType taggingType){
_person = person;
_tag = tag;
_taggingType = taggingType;
Taggings.add(this);
Taggings.add(this);
}
}