Skip to content

Commit

Permalink
spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
not-napoleon committed Dec 8, 2023
1 parent 7f19b5a commit 7b7cf5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ public TypedData(Object data, String name) {
@Override
public String toString() {
if (type == DataTypes.UNSIGNED_LONG && data instanceof Long longData) {
return type.toString() + "(" + NumericUtils.unsignedLongAsBigInteger(longData).toString() + ")";
return type.toString() + "(" + NumericUtils.unsignedLongAsBigInteger(longData).toString() + ")";
}
return type.toString() + "(" + (data == null ? "null" : data.toString()) + ")";
}
Expand Down

0 comments on commit 7b7cf5d

Please sign in to comment.