Skip to content

Commit

Permalink
Add nullability annotation to avoid warning in Kotlin code
Browse files Browse the repository at this point in the history
  • Loading branch information
cketti committed Aug 9, 2022
1 parent 28f7318 commit 6aec3a7
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@


import android.app.PendingIntent;

import androidx.annotation.NonNull;
import androidx.lifecycle.Lifecycle.Event;
import androidx.lifecycle.LifecycleObserver;
import androidx.lifecycle.LifecycleOwner;
Expand Down Expand Up @@ -224,6 +226,7 @@ public String getReadableOpenPgpProviderName() {
return openPgpProviderName != null ? openPgpProviderName : openPgpProvider;
}

@NonNull
public OpenPgpProviderState getOpenPgpProviderState() {
return openPgpProviderState;
}
Expand Down

0 comments on commit 6aec3a7

Please sign in to comment.