diff options
author | Elliott Hughes <enh@google.com> | 2010-01-27 12:00:07 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2010-01-27 12:00:07 -0800 |
commit | 1efbe3391e92e6188918122a600623090561364f (patch) | |
tree | bf484634c6159ce7fa7225463ec9ad14c4458246 /icu/src/main/native | |
parent | c3161906bf18dd97c83d50ad737df4cd19028b08 (diff) | |
download | libcore-1efbe3391e92e6188918122a600623090561364f.zip libcore-1efbe3391e92e6188918122a600623090561364f.tar.gz libcore-1efbe3391e92e6188918122a600623090561364f.tar.bz2 |
Gut NativeDecimalFormat in favor of icu4jni.DecimalFormat.
(I'll come back and rename icu4jni.DecimalFormat to NativeDecimalFormat and
remove all the fully-qualified names that distinguish between java.text's
DecimalFormat and icu4jni's DecimalFormat.)
Diffstat (limited to 'icu/src/main/native')
-rw-r--r-- | icu/src/main/native/NativeDecimalFormat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/icu/src/main/native/NativeDecimalFormat.cpp b/icu/src/main/native/NativeDecimalFormat.cpp index e974521..56e55ca 100644 --- a/icu/src/main/native/NativeDecimalFormat.cpp +++ b/icu/src/main/native/NativeDecimalFormat.cpp @@ -617,6 +617,6 @@ static JNINativeMethod gMethods[] = { }; int register_com_ibm_icu4jni_text_NativeDecimalFormat(JNIEnv* env) { return jniRegisterNativeMethods(env, - "com/ibm/icu4jni/text/NativeDecimalFormat", gMethods, + "com/ibm/icu4jni/text/DecimalFormat", gMethods, NELEM(gMethods)); } |