Skip to content

Commit

Permalink
annotate method parameter with nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
TSFenwick committed Jun 7, 2024
1 parent b3ad7a6 commit a58a2a5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -400,9 +400,9 @@ public static Long convertObjectToLong(@Nullable Object valObj, boolean reportPa
}

@Nullable
public static Long convertObjectToLong(Object value, String fieldName)
public static Long convertObjectToLong(@Nullable Object valObj, String fieldName)
{
return convertObjectToLong(value, false, fieldName);
return convertObjectToLong(valObj, false, fieldName);
}

@Nullable
Expand Down

0 comments on commit a58a2a5

Please sign in to comment.