File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/main/java/com/google/firebase/remoteconfig Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package com.google.firebase.remoteconfig {
3
3
4
4
public interface ConfigUpdateListener {
5
5
method public void onError(@NonNull com.google.firebase.remoteconfig.FirebaseRemoteConfigException);
6
- method public void onUpdate(java.util.Set<java.lang.String>);
6
+ method public void onUpdate(@NonNull java.util.Set<java.lang.String>);
7
7
}
8
8
9
9
public interface ConfigUpdateListenerRegistration {
Original file line number Diff line number Diff line change 14
14
15
15
package com .google .firebase .remoteconfig ;
16
16
17
+ import androidx .annotation .NonNull ;
18
+
17
19
import java .util .Set ;
18
20
import javax .annotation .Nonnull ;
19
21
@@ -31,7 +33,7 @@ public interface ConfigUpdateListener {
31
33
* Includes keys that are: added; deleted; and whose value, value source, or metadata has
32
34
* changed.
33
35
*/
34
- void onUpdate (Set <String > updatedParams );
36
+ void onUpdate (@ NonNull Set <String > updatedParams );
35
37
36
38
/**
37
39
* Callback for when an error occurs while listening for or fetching a config update.
You can’t perform that action at this time.
0 commit comments