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

Commit ccd7f4f1 authored by Prerepa Viswanadham's avatar Prerepa Viswanadham
Browse files

Take out TBD comments.

Change-Id: I5e02b4874b6cbc25f2361226e48e4c879698d0c8
parent 8c31b235
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -573,8 +573,6 @@ class AdapterProperties {
                            + (0xFF & ((int)val[8]));
        mTotNumOfTrackableAdv = ((0xFF & ((int)val[11])) << 8)
                            + (0xFF & ((int)val[10]));

        // TBD - Logic to be modified by Google as needed here
        mIsExtendedScanSupported = ((0xFF & ((int)val[12])) != 0);
        mIsDebugLogSupported = ((0xFF & ((int)val[13])) != 0);

+0 −1
Original line number Diff line number Diff line
@@ -1196,7 +1196,6 @@ public class GattService extends ProfileService {
            Log.e(TAG, "Advertise app or callback is null");
            return;
        }
        // TBD - Logic to be modified by Google as needed here
        Log.d(TAG, "onScanParamSetupCompleted : " + status);
    }

+0 −3
Original line number Diff line number Diff line
@@ -414,7 +414,6 @@ public class ScanManager {
            if (curScanSetting != Integer.MIN_VALUE &&
                    curScanSetting != ScanSettings.SCAN_MODE_OPPORTUNISTIC) {
                if (curScanSetting != mLastConfiguredScanSetting) {
                    // TBD - Logic to be modified by Google as needed here
                    int scanWindow = getScanWindowMillis(client.settings);
                    int scanInterval = getScanIntervalMillis(client.settings);
                    // convert scanWindow and scanInterval from ms to LE scan units(0.625ms)
@@ -905,7 +904,6 @@ public class ScanManager {
            if (settings == null) {
                return SCAN_MODE_LOW_POWER_WINDOW_MS;
            }
            // TBD - Logic to be modified by Google as needed here
            switch (settings.getScanMode()) {
                case ScanSettings.SCAN_MODE_LOW_LATENCY:
                    return SCAN_MODE_LOW_LATENCY_WINDOW_MS;
@@ -921,7 +919,6 @@ public class ScanManager {
        private int getScanIntervalMillis(ScanSettings settings) {
            if (settings == null)
                return SCAN_MODE_LOW_POWER_INTERVAL_MS;
            // TBD - Logic to be modified by Google as needed here
            switch (settings.getScanMode()) {
                case ScanSettings.SCAN_MODE_LOW_LATENCY:
                    return SCAN_MODE_LOW_LATENCY_INTERVAL_MS;