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

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

Merge "Nicer rethrowing of RemoteExceptions from WebViewUpdateService"

parents 7620d781 17757f8e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ public final class WebViewUpdateService {
        try {
            return getUpdateService().getAllWebViewPackages();
        } catch (RemoteException e) {
            throw new RuntimeException(e);
            throw e.rethrowFromSystemServer();
        }
    }

@@ -45,7 +45,7 @@ public final class WebViewUpdateService {
        try {
            return getUpdateService().getValidWebViewPackages();
        } catch (RemoteException e) {
            throw new RuntimeException(e);
            throw e.rethrowFromSystemServer();
        }
    }

@@ -56,7 +56,7 @@ public final class WebViewUpdateService {
        try {
            return getUpdateService().getCurrentWebViewPackageName();
        } catch (RemoteException e) {
            throw new RuntimeException(e);
            throw e.rethrowFromSystemServer();
        }
    }