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

Commit a697f406 authored by Robert Greenwalt's avatar Robert Greenwalt Committed by Android (Google) Code Review
Browse files

Merge "Stop complaining about failure to remove routes"

parents ba4dd937 2473a4ba
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1366,7 +1366,7 @@ private NetworkStateTracker makeWimaxStateTracker() {
                        mNetd.removeRoute(ifaceName, r);
                    } catch (Exception e) {
                        // never crash - catch them all
                        if (DBG) loge("Exception trying to remove a route: " + e);
                        if (VDBG) loge("Exception trying to remove a route: " + e);
                        return false;
                    }
                } else {
@@ -1378,7 +1378,7 @@ private NetworkStateTracker makeWimaxStateTracker() {
                    mNetd.removeSecondaryRoute(ifaceName, r);
                } catch (Exception e) {
                    // never crash - catch them all
                    if (DBG) loge("Exception trying to remove a route: " + e);
                    if (VDBG) loge("Exception trying to remove a route: " + e);
                    return false;
                }
            }