Skip to content

Commit

Permalink
refactor(app-check, android): update linting warnings (#11666)
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Oct 17, 2023
1 parent dd3e56c commit fa9c818
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -34,7 +34,6 @@ public class FlutterFirebaseAppCheckPlugin

private static final String METHOD_CHANNEL_NAME = "plugins.flutter.io/firebase_app_check";
private final Map<EventChannel, TokenChannelStreamHandler> streamHandlers = new HashMap<>();
private final String TAG = "FLTAppCheckPlugin";

private final String debugProvider = "debug";
private final String safetyNetProvider = "safetyNet";
Expand Down Expand Up @@ -279,6 +278,7 @@ public Task<Void> didReinitializeFirebaseCore() {
private void removeEventListeners() {
for (EventChannel eventChannel : streamHandlers.keySet()) {
EventChannel.StreamHandler streamHandler = streamHandlers.get(eventChannel);
assert streamHandler != null;
streamHandler.onCancel(null);
eventChannel.setStreamHandler(null);
}
Expand Down
Expand Up @@ -7,7 +7,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
// START: FlutterFire Configuration
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.gms:google-services:4.4.0'
// END: FlutterFire Configuration
}
}
Expand Down

0 comments on commit fa9c818

Please sign in to comment.