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

Commit 8fc01bd0 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Remove unnecessary advertiser count check"

parents 997db494 7770f07e
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.