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

Commit dd0a7257 authored by Hyundo Moon's avatar Hyundo Moon
Browse files

Fix typo 'rotue' to 'route'

Test: Builds successfully
Change-Id: I97a45701e5777e896b31fd3a854973526e66c383
parent cb0b6c67
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -369,7 +369,7 @@ public class MediaRouter2 {
        void notifyRoutes() {
            final List<MediaRoute2Info> routes = mRoutes;
            // notify only when bound to media router service.
            //TODO: Correct the condition when control category, default rotue, .. are finalized.
            //TODO: Correct the condition when control category, default route, .. are finalized.
            if (routes.size() > 0) {
                mExecutor.execute(() -> mCallback.onRoutesChanged(routes));
            }
+2 −2
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ final class MediaRoute2ProviderProxy implements ServiceConnection {

    public void unselectRoute(String packageName, String routeId) {
        if (mConnectionReady) {
            mActiveConnection.unselectRotue(packageName, routeId);
            mActiveConnection.unselectRoute(packageName, routeId);
            updateBinding();
        }
    }
@@ -324,7 +324,7 @@ final class MediaRoute2ProviderProxy implements ServiceConnection {
            }
        }

        public void unselectRotue(String packageName, String routeId) {
        public void unselectRoute(String packageName, String routeId) {
            try {
                mProvider.unselectRoute(packageName, routeId);
            } catch (RemoteException ex) {