Loading packages/SettingsProvider/src/com/android/providers/settings/SettingsProvider.java +2 −1 Original line number Diff line number Diff line Loading @@ -252,7 +252,8 @@ public class SettingsProvider extends ContentProvider { if (!DatabaseHelper.isValidTable(this.table)) { throw new IllegalArgumentException("Bad root path: " + this.table); } if (TABLE_SYSTEM.equals(this.table) || TABLE_SECURE.equals(this.table)) { if (TABLE_SYSTEM.equals(this.table) || TABLE_SECURE.equals(this.table) || TABLE_GLOBAL.equals(this.table)) { this.where = Settings.NameValueTable.NAME + "=?"; this.args = new String[] { url.getPathSegments().get(1) }; } else { Loading Loading
packages/SettingsProvider/src/com/android/providers/settings/SettingsProvider.java +2 −1 Original line number Diff line number Diff line Loading @@ -252,7 +252,8 @@ public class SettingsProvider extends ContentProvider { if (!DatabaseHelper.isValidTable(this.table)) { throw new IllegalArgumentException("Bad root path: " + this.table); } if (TABLE_SYSTEM.equals(this.table) || TABLE_SECURE.equals(this.table)) { if (TABLE_SYSTEM.equals(this.table) || TABLE_SECURE.equals(this.table) || TABLE_GLOBAL.equals(this.table)) { this.where = Settings.NameValueTable.NAME + "=?"; this.args = new String[] { url.getPathSegments().get(1) }; } else { Loading