summaryrefslogtreecommitdiffstats
path: root/benchmarks/src
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2015-03-31 09:01:13 +0000
committerNarayan Kamath <narayan@google.com>2015-03-31 09:01:13 +0000
commit3b59929cb9978453c8bc81cf7e222c40fa42ce90 (patch)
treea39042db374d8cd375547c0ab3936d667a7243b3 /benchmarks/src
parentde7c1fb9684c2558743e88fbf74a61f5ed6b47b5 (diff)
downloadlibcore-3b59929cb9978453c8bc81cf7e222c40fa42ce90.zip
libcore-3b59929cb9978453c8bc81cf7e222c40fa42ce90.tar.gz
libcore-3b59929cb9978453c8bc81cf7e222c40fa42ce90.tar.bz2
Revert "Add icu4j to core-libart.jar."
This reverts commit de7c1fb9684c2558743e88fbf74a61f5ed6b47b5. Change-Id: I22be183176e27371b3ab5fd8868598968cf01584
Diffstat (limited to 'benchmarks/src')
-rw-r--r--benchmarks/src/benchmarks/regression/BreakIteratorBenchmark.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/benchmarks/src/benchmarks/regression/BreakIteratorBenchmark.java b/benchmarks/src/benchmarks/regression/BreakIteratorBenchmark.java
index b58077d..1dcafa6 100644
--- a/benchmarks/src/benchmarks/regression/BreakIteratorBenchmark.java
+++ b/benchmarks/src/benchmarks/regression/BreakIteratorBenchmark.java
@@ -61,11 +61,10 @@ 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);
+ com.ibm.icu.text.BreakIterator it = com.ibm.icu.text.BreakIterator.getLineInstance(text.locale);
it.setText(text.text);
- while (it.next() != com.android.ibm.icu.text.BreakIterator.DONE) {
+ while (it.next() != com.ibm.icu.text.BreakIterator.DONE) {
}
}
}