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

Commit c98b1427 authored by Elv1zz's avatar Elv1zz Committed by Tobias Kaminsky (Rebase PR Action)
Browse files

Avoid TAG being null



By using the `class.getName()` instead of `class.getCanonicalName()` the `TAG` should not become `null`.

Signed-off-by: default avatarElv1zz <elv1zz.git@gmail.com>
parent 1ad59f70
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ public class AdvancedX509KeyManager
        extends X509ExtendedKeyManager
        implements X509KeyManager
{
   private final static String TAG = AdvancedX509KeyManager.class.getCanonicalName();
   private final static String TAG = AdvancedX509KeyManager.class.getName();
   private static final String NOTIFICATION_CHANNEL_ID = TAG + ".notifications";

   private final static String DECISION_INTENT = TAG + ".DECISION";
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ import androidx.annotation.Nullable;

public class SelectClientCertificateHelperActivity extends Activity implements KeyChainAliasCallback {

    private static final String TAG = SelectClientCertificateHelperActivity.class.getCanonicalName();
    private static final String TAG = SelectClientCertificateHelperActivity.class.getName();

    private static final int REQ_CODE_INSTALL_CERTS = 1;