Dealing with a possible null pointer dereference

This commit is contained in:
viniciusbds 2019-10-18 00:23:26 -03:00
parent 5d89978000
commit 790fc2ffaa

View File

@ -81,13 +81,15 @@ public class SetProjectTagsCommand extends Command {
tag = tag.trim(); tag = tag.trim();
if (!tag.isEmpty()) { if (!tag.isEmpty()) {
if (allProjectTags!= null && allProjectTags.containsKey(tag)) { if (allProjectTags!= null) {
allProjectTags.put(tag, allProjectTags.get(tag) + 1); if (allProjectTags.containsKey(tag)) {
} else { allProjectTags.put(tag, allProjectTags.get(tag) + 1);
allProjectTags.put(tag, 1); } else {
allProjectTags.put(tag, 1);
}
} }
polishedTags.add(tag); polishedTags.add(tag);
} }
} }
// Lets update the project tags // Lets update the project tags