Commit 3f1ba8fe authored by Narayan Kamath's avatar Narayan Kamath
Browse files

Rename package to android.icu.* instead of com.android.ibm.icu.*.

Based on a discussion with the icu team.

Change-Id: I47a6b260a9348debd65282794996f7976b8bc008
parent 345d118d
......@@ -61,11 +61,11 @@ public final class BreakIteratorBenchmark extends SimpleBenchmark {
public void timeIcuBreakIterator(int nreps) {
for (int i = 0; i < nreps; ++i) {
com.android.ibm.icu.text.BreakIterator it =
com.android.ibm.icu.text.BreakIterator.getLineInstance(text.locale);
android.icu.text.BreakIterator it =
android.icu.text.BreakIterator.getLineInstance(text.locale);
it.setText(text.text);
while (it.next() != com.android.ibm.icu.text.BreakIterator.DONE) {
while (it.next() != android.icu.text.BreakIterator.DONE) {
}
}
}
......
rule com.ibm.icu.** com.android.ibm.icu.@1
rule com.ibm.icu.** android.icu.@1
......@@ -801,7 +801,7 @@ public final class System {
// is prioritized over the properties in ICUConfig.properties. The issue with using
// that is that it doesn't play well with jarjar and it needs complicated build rules
// to change its default value.
p.put("com.android.ibm.icu.impl.ICUBinary.dataPath", getenv("ANDROID_ROOT") + "/usr/icu");
p.put("android.icu.impl.ICUBinary.dataPath", getenv("ANDROID_ROOT") + "/usr/icu");
parsePropertyAssignments(p, specialProperties());
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment