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

Commit 89b61243 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix typo 'rotue' to 'route'"

parents 1e94d6db dd0a7257
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -437,7 +437,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();
        }
    }
@@ -338,7 +338,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) {