Skip to content

Commit

Permalink
Supply empty argument list explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippus committed Feb 14, 2021
1 parent c09a535 commit 585c931
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ trait CollectionReaders {
val entryConfig = entry.atPath(DummyPathValue)
builder += entryReader.read(entryConfig, DummyPathValue)
}
builder.result
builder.result()
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ trait CollectionReaders {
val entryConfig = entry.atPath(DummyPathValue)
builder += entryReader.read(entryConfig, DummyPathValue)
}
builder.result
builder.result()
}
}

Expand Down

0 comments on commit 585c931

Please sign in to comment.