diff options
author | Elliott Hughes <enh@google.com> | 2011-02-16 14:35:02 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2011-02-16 14:41:58 -0800 |
commit | 08343a4ef77616fc420e51d1095c0d6a266041ba (patch) | |
tree | b2ab048419af23652b98de42d973d4c6eb88ccbc /luni/src/main/native/sub.mk | |
parent | 21095656840696e08fd449ef39d8f158011c86ed (diff) | |
download | libcore-08343a4ef77616fc420e51d1095c0d6a266041ba.zip libcore-08343a4ef77616fc420e51d1095c0d6a266041ba.tar.gz libcore-08343a4ef77616fc420e51d1095c0d6a266041ba.tar.bz2 |
Remove our implementations of inline natives.
It turns out that our String.equals was getting used. Making dalvikvm's inline
natives be native methods ensures that doesn't happen.
I've also added a test to ensure we explicitly test both variants.
Change-Id: Ie2a4b5289092da5ffca4a4273692f1048ab3b841
Diffstat (limited to 'luni/src/main/native/sub.mk')
-rw-r--r-- | luni/src/main/native/sub.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/luni/src/main/native/sub.mk b/luni/src/main/native/sub.mk index 4f94dd1..e986986 100644 --- a/luni/src/main/native/sub.mk +++ b/luni/src/main/native/sub.mk @@ -29,8 +29,6 @@ LOCAL_SRC_FILES := \ java_io_FileDescriptor.cpp \ java_io_ObjectStreamClass.cpp \ java_lang_Character.cpp \ - java_lang_Double.cpp \ - java_lang_Float.cpp \ java_lang_Math.cpp \ java_lang_ProcessManager.cpp \ java_lang_RealToString.cpp \ |