Skip to content

Commit

Permalink
Add Nullable annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
herunkang2018 committed Oct 26, 2023
1 parent b26e91e commit eef8eee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ public static ByteString fromHex(String hex) {
}

/** SQL UNHEX(varchar) function. */
public static ByteString unHex(String hex) {
public static @Nullable ByteString unHex(String hex) {
try {
return fromHexHelper(hex);
} catch (DecoderException e) {
Expand Down

0 comments on commit eef8eee

Please sign in to comment.