Skip to content

Commit

Permalink
Implement ItemDbProviders, pt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mdcfe committed Aug 14, 2018
1 parent c5376d3 commit 4be28ba
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -159,7 +159,7 @@ public void rebuild(List<String> lines) {
lines.stream()
.filter(line -> line.length() > 0 && !(line.charAt(0) == '#'))
.map(this::parseLine)
.filter(itemData -> itemData != null)
.filter(Objects::nonNull)
.forEach(this::addItem);

for (List<String> nameList : names.values()) {
Expand Down

0 comments on commit 4be28ba

Please sign in to comment.