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

Commit 361dd8d6 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Change visibility of methods"

parents cfa83963 40fde639
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2215,7 +2215,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
        }
    }

    void systemReady() {
    protected void systemReady() {
        mCaptivePortalTracker = CaptivePortalTracker.makeCaptivePortalTracker(mContext, this);
        loadGlobalProxy();

@@ -3552,7 +3552,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
        Slog.e(TAG, s);
    }

    int convertFeatureToNetworkType(int networkType, String feature) {
    protected int convertFeatureToNetworkType(int networkType, String feature) {
        int usedNetworkType = networkType;

        if(networkType == ConnectivityManager.TYPE_MOBILE) {
@@ -4951,7 +4951,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
        setAlarm(samplingIntervalInSeconds * 1000, mSampleIntervalElapsedIntent);
    }

    void setAlarm(int timeoutInMilliseconds, PendingIntent intent) {
    protected void setAlarm(int timeoutInMilliseconds, PendingIntent intent) {
        long wakeupTime = SystemClock.elapsedRealtime() + timeoutInMilliseconds;
        mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, wakeupTime, intent);
    }