mirror of
https://github.com/apache/cordova-android.git
synced 2026-05-30 00:00:04 +08:00
Remove unused CordovaWebViewImpl parameter, and make pluginManager private
It was public by accident - with the final design leaving it public does not help with backwards-compatibility.
This commit is contained in:
@@ -62,7 +62,7 @@ public class CordovaWebViewTestActivity extends Activity {
|
||||
parser.parse(this);
|
||||
|
||||
SystemWebView webView = (SystemWebView) findViewById(R.id.cordovaWebView);
|
||||
cordovaWebView = new CordovaWebViewImpl(this, new SystemWebViewEngine(webView));
|
||||
cordovaWebView = new CordovaWebViewImpl(new SystemWebViewEngine(webView));
|
||||
cordovaWebView.init(cordovaInterface, parser.getPluginEntries(), parser.getPreferences());
|
||||
|
||||
cordovaWebView.loadUrl(START_URL);
|
||||
|
||||
Reference in New Issue
Block a user