Skip to content

Commit

Permalink
Fix toString of NumberType to be like class name
Browse files Browse the repository at this point in the history
  • Loading branch information
ljacqu committed Oct 18, 2024
1 parent 0a8e9bd commit 68bfefe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public boolean canConvertToType(@NotNull TypeInfo typeInformation) {

@Override
public @NotNull String toString() {
return "NumberTypeHandler[" + getType().getSimpleName() + "]";
return "NumberType[" + getType().getSimpleName() + "]";
}

/**
Expand Down

0 comments on commit 68bfefe

Please sign in to comment.