Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
brachy84 committed Jul 5, 2024
1 parent 54af456 commit 4891763
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ T invoke(String s, Object... args) {
t = this.defaultValue.get();
return t == null || t.hasError() ? null : t.getValue();
}
return Objects.requireNonNull(t.getValue(), "Object napper result must contain a non-null value!");
return Objects.requireNonNull(t.getValue(), "Object mapper result must contain a non-null value!");
}

T invokeDefault() {
Expand Down

0 comments on commit 4891763

Please sign in to comment.