Remove cordova.xml fallback from Config.java (it was removed from PluginManager for 3.0)

This commit is contained in:
Andrew Grieve 2013-10-15 12:17:31 -04:00
parent 16de12a3ba
commit 638fbfabdc

View File

@ -70,11 +70,7 @@ public class Config {
int id = action.getResources().getIdentifier("config", "xml", action.getClass().getPackage().getName());
if (id == 0) {
id = action.getResources().getIdentifier("cordova", "xml", action.getPackageName());
LOG.i("CordovaLog", "config.xml missing, reverting to cordova.xml");
}
if (id == 0) {
LOG.i("CordovaLog", "cordova.xml missing. Ignoring...");
LOG.i("CordovaLog", "config.xml missing. Ignoring...");
return;
}