summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2009-12-08 13:20:29 -0800
committerElliott Hughes <enh@google.com>2009-12-08 13:20:29 -0800
commitb5b999c3400cb43fb785fc2acd42029ed7851f42 (patch)
tree464c14306588ad937c85df639f6936497b09be95
parent932be7210341cec0742f00de7068e31902ae1636 (diff)
downloadlibcore-b5b999c3400cb43fb785fc2acd42029ed7851f42.zip
libcore-b5b999c3400cb43fb785fc2acd42029ed7851f42.tar.gz
libcore-b5b999c3400cb43fb785fc2acd42029ed7851f42.tar.bz2
Fix build.
-rw-r--r--luni/src/test/java/tests/api/java/util/FormatterTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/luni/src/test/java/tests/api/java/util/FormatterTest.java b/luni/src/test/java/tests/api/java/util/FormatterTest.java
index a932721..9f1d399 100644
--- a/luni/src/test/java/tests/api/java/util/FormatterTest.java
+++ b/luni/src/test/java/tests/api/java/util/FormatterTest.java
@@ -1618,7 +1618,7 @@ public class FormatterTest extends TestCase {
new MockFormattable(),
(Object) null,
};
- f = new Formatter(Locale.GERMAN);
+ Formatter f = new Formatter(Locale.GERMAN);
for (int i = 0; i < input.length; i++) {
if (!(input[i] instanceof Formattable)) {
try {