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

Commit 902c9c22 authored by Lorenzo Colitti's avatar Lorenzo Colitti
Browse files

Add stacking to the NetworkStateTrackers.

Bug: 8276725
Change-Id: I55a107fea78f9cc84f15bd6c75292138fb35a1b6
parent 137ce5ad
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -373,4 +373,14 @@ public class BluetoothTetheringDataTracker implements NetworkStateTracker {
    public void setDependencyMet(boolean met) {
        // not supported on this network
    }

    @Override
    public void addStackedLink(LinkProperties link) {
        mLinkProperties.addStackedLink(link);
    }

    @Override
    public void removeStackedLink(LinkProperties link) {
        mLinkProperties.removeStackedLink(link);
    }
}