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

Commit e4967748 authored by Santiago Etchebehere's avatar Santiago Etchebehere
Browse files

Revert "Check for providers being enabled"

This reverts commit 3bc2536d.

Reason for revert: It looks like just checking for the provider is enough as they don't resolve if not enabled.

Change-Id: If8f1c3ea5bd3e6c8db63ce6f39449594b771b069
parent 3bc2536d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ public class ContentProviderClockProvider implements ClockProvider {

    @Override
    public boolean isAvailable() {
        return mProviderInfo != null && mProviderInfo.isEnabled();
        return mProviderInfo != null;
    }

    @Override
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ public class LauncherGridOptionsProvider {
    }

    boolean areGridsAvailable() {
        return mProviderInfo != null && mProviderInfo.isEnabled();
        return mProviderInfo != null;
    }

    /**