Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
BryceStevenWilley committed Aug 25, 2024
1 parent 0d01952 commit 6012d2d
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ private FilingError(Type type, String description) {
}

private FilingError(Type type, String description, Optional<InterviewVariable> missingVariable) {
super(type.toString() + " " + description + " " + missingVariable.map(v -> v.toString()).orElse(""));
super(
type.toString()
+ " "
+ description
+ " "
+ missingVariable.map(v -> v.toString()).orElse(""));
this.type = type;
this.description = description;
this.missingVariable = missingVariable;
Expand Down

0 comments on commit 6012d2d

Please sign in to comment.