Skip to content

Commit

Permalink
[besu] fix: simplify function signature
Browse files Browse the repository at this point in the history
  • Loading branch information
delehef committed Nov 21, 2023
1 parent 64076f6 commit a0b5f37
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/exporters/besu_trace_columns.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,9 @@ public Trace fillAndValidateRow() {
return this;
}

public Trace build() {
public void build() {
if (!filled.isEmpty()) {
throw new IllegalStateException("Cannot build trace with a non-validated row.");
}
return null;
}
}

0 comments on commit a0b5f37

Please sign in to comment.