Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6aec3a76 authored by cketti's avatar cketti
Browse files

Add nullability annotation to avoid warning in Kotlin code

parent 28f73186
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@ package org.openintents.openpgp;


import android.app.PendingIntent;

import androidx.annotation.NonNull;
import androidx.lifecycle.Lifecycle.Event;
import androidx.lifecycle.LifecycleObserver;
import androidx.lifecycle.LifecycleOwner;
@@ -224,6 +226,7 @@ public class OpenPgpApiManager implements LifecycleObserver {
        return openPgpProviderName != null ? openPgpProviderName : openPgpProvider;
    }

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