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

Commit 4a79bc0f authored by Steve Kondik's avatar Steve Kondik Committed by Gerrit Code Review
Browse files

Merge "Disable the IllegalStateException on route del" into ics

parents 5928eff4 5a4b064d
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -576,9 +576,13 @@ public class NetworkManagementService extends INetworkManagementService.Stub
        try {
            rsp = mConnector.doCommand(cmd.toString());
        } catch (NativeDaemonConnectorException e) {
            if (action != REMOVE) {
                throw new IllegalStateException(
                    "Unable to communicate with native dameon to add routes - "
                    "Unable to communicate with native daemon to add routes - "
                    + e);
            } else {
                Log.w(TAG, "Unable to remove route on interface " + interfaceName);
            }
        }

        if (DBG) {