summaryrefslogtreecommitdiffstats
path: root/vm/Init.h
diff options
context:
space:
mode:
authorDan Bornstein <danfuzz@android.com>2011-04-14 14:25:56 -0700
committerDan Bornstein <danfuzz@android.com>2011-04-14 14:25:56 -0700
commitb584d4abf22df78b1b24f3870ffc282ac7ff052e (patch)
tree09d1dbdcbd694e2022b604e6c55f6ae290ba4bf5 /vm/Init.h
parent7986b75a1fba440a12afb123c53ce27cbbbb4c43 (diff)
downloadandroid_dalvik-b584d4abf22df78b1b24f3870ffc282ac7ff052e.tar.gz
android_dalvik-b584d4abf22df78b1b24f3870ffc282ac7ff052e.tar.bz2
android_dalvik-b584d4abf22df78b1b24f3870ffc282ac7ff052e.zip
Cleanup.
I have it on enthusiastic authority that the foreach would never have any value, so away it goes. I got rid of the pointless re-init of Class too. Change-Id: I794d5f1286d7c240f7d17b24e1e9e8e93b87316a
Diffstat (limited to 'vm/Init.h')
-rw-r--r--vm/Init.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/vm/Init.h b/vm/Init.h
index 9e38da9fa..7e91217fa 100644
--- a/vm/Init.h
+++ b/vm/Init.h
@@ -62,15 +62,6 @@ bool dvmFindRequiredClassesAndMembers(void);
*/
bool dvmFindReferenceMembers(ClassObject* classReference);
-typedef void ObjectReferenceCallback(Object** pReference);
-
-/*
- * Perform a callback on each of the object references used directly
- * by the VM. The value passed into the callback is a pointer to where
- * the reference is stored.
- */
-void dvmForEachRequiredReference(ObjectReferenceCallback* callback);
-
/*
* Replacement for fprintf() when we want to send a message to the console.
* This defaults to fprintf(), but will use the JNI fprintf callback if