Fix URI returned by IccProvider.

insert() had a typo in the URI it returned.

b/2113186
This commit is contained in:
jsh
2009-09-10 22:59:11 -07:00
parent ebebf9c36c
commit 12f413d29e

View File

@@ -181,7 +181,7 @@ public class IccProvider extends ContentProvider {
return null;
}
StringBuilder buf = new StringBuilder("content://im/");
StringBuilder buf = new StringBuilder("content://icc/");
switch (match) {
case ADN:
buf.append("adn/");