Skip to content

Commit

Permalink
Format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LTPhantom committed May 6, 2024
1 parent 0a826f5 commit 1625393
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class AdMessageCodec extends StandardMessageCodec {
@SuppressWarnings("deprecation")
@Nullable
private MediationNetworkExtrasProvider mediationNetworkExtrasProvider;

@NonNull private final FlutterRequestAgentProvider requestAgentProvider;

AdMessageCodec(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ class FlutterAdRequest {
@Nullable private final List<String> neighboringContentUrls;
@Nullable private final Integer httpTimeoutMillis;
@Nullable private final String mediationExtrasIdentifier;

@SuppressWarnings("deprecation")
@Nullable
private final MediationNetworkExtrasProvider mediationNetworkExtrasProvider;

@Nullable private final Map<String, String> adMobExtras;
@NonNull private final String requestAgent;
@Nullable private final List<FlutterMediationExtras> mediationExtras;
Expand All @@ -50,9 +52,11 @@ protected static class Builder {
@Nullable private List<String> neighboringContentUrls;
@Nullable private Integer httpTimeoutMillis;
@Nullable private String mediationExtrasIdentifier;

@SuppressWarnings("deprecation")
@Nullable
private MediationNetworkExtrasProvider mediationNetworkExtrasProvider;

@Nullable private Map<String, String> adMobExtras;
@NonNull private String requestAgent;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,11 @@ private static <T> T requireNonNull(T obj) {
@Nullable private AppStateNotifier appStateNotifier;
@Nullable private UserMessagingPlatformManager userMessagingPlatformManager;
private final Map<String, NativeAdFactory> nativeAdFactories = new HashMap<>();

@SuppressWarnings("deprecation")
@Nullable
private MediationNetworkExtrasProvider mediationNetworkExtrasProvider;

private final FlutterMobileAdsWrapper flutterMobileAds;
/**
* Public constructor for the plugin. Dependency initialization is handled in lifecycle methods
Expand Down

0 comments on commit 1625393

Please sign in to comment.