Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
wsargent committed Dec 20, 2024
1 parent 2b40793 commit d82cc27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/main/java/echopraxia/api/Field.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ static <F extends Field> F keyValue(
static <F extends Field> @NotNull F create(
@NotNull String name, @NotNull Value<?> value, Attributes attributes, Class<F> fieldClass) {
if (fieldClass == DefaultField.class) {
//noinspection unchecked
return (F) new DefaultField(name, value, attributes);
//noinspection unchecked
return (F) new DefaultField(name, value, attributes);
} else {
try {
Constructor<F> constructor =
Expand Down

0 comments on commit d82cc27

Please sign in to comment.