Skip to content

Commit

Permalink
413 Whitespace change
Browse files Browse the repository at this point in the history
  • Loading branch information
zsandoz committed Aug 17, 2022
1 parent c4dace3 commit 8d63c3b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ public Iterator<YamlLine> iterator() {
final YamlLine first = iterator.next();
sameIndentation.add(first);
int firstIndentation = first.indentation();
boolean firstIsDashMap =
this.mappingStartsAtDash(first);
boolean firstIsDashMap = this.mappingStartsAtDash(first);
while (iterator.hasNext()) {
YamlLine current = iterator.next();
if (firstIsDashMap
Expand Down

0 comments on commit 8d63c3b

Please sign in to comment.