summaryrefslogtreecommitdiffstats
path: root/libnativehelper/Register.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2010-03-31 15:45:15 -0700
committerElliott Hughes <enh@google.com>2010-04-01 11:13:10 -0700
commitb8da32a8ba8dd9f7d0c632ea7ec3a8757a4d6044 (patch)
tree07026cd027f8f3cac7f3e2b5b758d2527137eff9 /libnativehelper/Register.c
parenteb19bb90fcd5e0a6ea44c4084e3f694fc00fcb3c (diff)
downloadandroid_dalvik-b8da32a8ba8dd9f7d0c632ea7ec3a8757a4d6044.tar.gz
android_dalvik-b8da32a8ba8dd9f7d0c632ea7ec3a8757a4d6044.tar.bz2
android_dalvik-b8da32a8ba8dd9f7d0c632ea7ec3a8757a4d6044.zip
Add Java 6's java.net.IDN.
harmony's tests and my code, though ICU4C does all the hard work. I've added a test of my own to demonstrate some weird RI behavior (that I've emulated in our implementation). Bug: 2497395 Change-Id: I8146f72a8a3204449ee3d0d9065dadc1c1c77fcc
Diffstat (limited to 'libnativehelper/Register.c')
-rw-r--r--libnativehelper/Register.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libnativehelper/Register.c b/libnativehelper/Register.c
index c09b1e9ca..96267cfaf 100644
--- a/libnativehelper/Register.c
+++ b/libnativehelper/Register.c
@@ -88,6 +88,8 @@ int jniRegisterSystemMethods(JNIEnv* env)
goto bail;
if (register_com_ibm_icu4jni_text_NativeCollator(env) != 0)
goto bail;
+ if (register_com_ibm_icu4jni_text_NativeIDN(env) != 0)
+ goto bail;
if (register_com_ibm_icu4jni_converters_NativeConverter(env) != 0)
goto bail;
if (register_com_ibm_icu4jni_regex_NativeRegEx(env) != 0)