Skip to content

Commit

Permalink
Fix quality flaw (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
vilchik-elena authored Oct 4, 2016
1 parent 702d266 commit 4ca8c0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void visitObjectBindingPattern(ObjectBindingPatternTree tree) {
private void ignore(List<IdentifierTree> identifiers) {
if (identifiers.size() > 1) {
identifiers.stream()
.map(identifier -> identifier.symbol())
.map(IdentifierTree::symbol)
.forEach(ignoredSymbols::add);
}
}
Expand Down

0 comments on commit 4ca8c0f

Please sign in to comment.