Skip to content

Commit

Permalink
Merge branch 'pr/14'
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-pzj committed Mar 19, 2019
2 parents d3668ec + e3d2015 commit df182f9
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ https://travis-ci.org/CS2113-AY1819S2-T08-3/main[image:https://travis-ci.org/CS2
https://ci.appveyor.com/project/seanieyap/main-r8jp5[image:https://ci.appveyor.com/api/projects/status/nmi13f89dmx9yasg?svg=true[Build Status]]
https://app.netlify.com/sites/planmysem/deploys[image:https://api.netlify.com/api/v1/badges/6c19b45b-dbdd-4eff-afe2-200356d6ebb4/deploy-status[Build Status]]
https://coveralls.io/github/CS2113-AY1819S2-T08-3/main?branch=master[image:https://coveralls.io/repos/github/CS2113-AY1819S2-T08-3/main/badge.svg?branch=master[Coverage Status]]
https://www.codacy.com/app/seanieyap/main_2?utm_source=github.com&utm_medium=referral&utm_content=CS2113-AY1819S2-T08-3/main&utm_campaign=Badge_Grade[image:https://api.codacy.com/project/badge/Grade/2000e781292e43ee986c807589ceee27[Codacy Badge]]
https://www.codacy.com/app/CS2113T-T08-3/main?utm_source=github.com&utm_medium=referral&utm_content=CS2113-AY1819S2-T08-3/main&utm_campaign=Badge_Grade[image:https://api.codacy.com/project/badge/Grade/90f57d16da5049858ef67b6eaaf692f2[Codacy Badge]]

image::Ui.png[]

Expand Down
Binary file added docs/images/Ui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions src/planmysem/common/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,9 @@ public static int parseInteger(String value) {
* @throws IllegalValueException if any of the raw values are invalid
*/
public static Set<Tag> parseTags(Set<String> tags) throws IllegalValueException {

if (tags == null) {
return null;
}

Set<Tag> tagSet = new HashSet<>();
for (String tag : tags) {
tagSet.add(new Tag(tag));
Expand Down
1 change: 0 additions & 1 deletion test/java/planmysem/common/UtilsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ public void parse_tags_unsuccessful() {
}

assertEquals(tags, null);

}

private void assertAreUnique(Object... objects) {
Expand Down

0 comments on commit df182f9

Please sign in to comment.