Skip to content

Commit

Permalink
Fix: missing semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Griffin committed Sep 17, 2024
1 parent ae3b305 commit b1a2490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/fauna/response/ConstraintFailure.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public Builder path(PathElement[] path) {
}

public ConstraintFailure build() {
PathElement[][] paths = this.paths.toArray(new PathElement[this.paths.size()][])
PathElement[][] paths = this.paths.toArray(new PathElement[this.paths.size()][]);
return new ConstraintFailure(this.message, this.name, this.paths.isEmpty() ? null : paths);
}

Expand Down

0 comments on commit b1a2490

Please sign in to comment.