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

Commit c319ddd9 authored by Kristian Monsen's avatar Kristian Monsen Committed by Android Git Automerger
Browse files

am 4c737496: Merge "Change the exception msg" into klp-dev

* commit '4c737496':
  Change the exception msg
parents f76c1685 4c737496
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2659,7 +2659,7 @@ public final class WebViewClassic implements WebViewProvider, WebViewProvider.Sc
    @Override
    public void evaluateJavaScript(String script, ValueCallback<String> resultCallback) {
        // K-only API not implemented in WebViewClassic.
        throw new IllegalStateException("This API not supported in Classic WebView.");
        throw new IllegalStateException("This API not supported on Android 4.3 and earlier");
    }

    /**
@@ -2898,7 +2898,7 @@ public final class WebViewClassic implements WebViewProvider, WebViewProvider.Sc
    public void exportToPdf(java.io.OutputStream out, int width, int height,
            ValueCallback<Boolean> resultCallback) {
        // K-only API not implemented in WebViewClassic.
        throw new IllegalStateException("This API not supported in Classic WebView.");
        throw new IllegalStateException("This API not supported on Android 4.3 and earlier");

    }