Skip to content

Commit

Permalink
fix(crashlytics, android): suppress unchecked cast warning (#16864)
Browse files Browse the repository at this point in the history
  • Loading branch information
SelaseKay authored Dec 17, 2024
1 parent 1561121 commit 6bd5101
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ private Task<Void> recordError(final Map<String, Object> arguments) {
final boolean fatal = (boolean) Objects.requireNonNull(arguments.get(Constants.FATAL));
final String buildId =
(String) Objects.requireNonNull(arguments.get(Constants.BUILD_ID));
@SuppressWarnings("unchecked")
final List<String> loadingUnits =
(List<String>) Objects.requireNonNull(arguments.get(Constants.LOADING_UNITS));

Expand Down

0 comments on commit 6bd5101

Please sign in to comment.