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

Commit 0f425f0d authored by Jakub Pawlowski's avatar Jakub Pawlowski Committed by android-build-merger
Browse files

Merge "Remove unnecessary advertiser count check"

am: ab1a85f4

Change-Id: Ie5e41217486cbe2558f28c8d82d4aeef02c1a486
parents 51aecab1 ab1a85f4
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -201,11 +201,6 @@ class AdvertiseManager {
                return;
            }

            if (mAdvertiseClients.size() >= maxAdvertiseInstances()) {
                postCallback(advertiserId,
                        AdvertiseCallback.ADVERTISE_FAILED_TOO_MANY_ADVERTISERS);
                return;
            }
            if (!mAdvertiseNative.startAdverising(client)) {
                postCallback(advertiserId, AdvertiseCallback.ADVERTISE_FAILED_INTERNAL_ERROR);
                return;
@@ -230,11 +225,6 @@ class AdvertiseManager {
                mAdvertiseClients.remove(client);
            }
        }

        // Returns maximum advertise instances supported by controller.
        int maxAdvertiseInstances() {
            return mAdapterService.getNumOfAdvertisementInstancesSupported();
        }
    }

    // Class that wraps advertise native related constants, methods etc.