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:
Andrew Grieve
2015-04-08 21:01:50 -04:00
parent a652d892ca
commit 2e9cbdcb0d
3 changed files with 7 additions and 8 deletions
@@ -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);