* Removed all Id tags.
[cacao.git] / src / native / vm / gnu / gnu_classpath_VMSystemProperties.c
index f4ad3f8b04d83a14ee536bff02ccb182b3d4d8a2..91481a73c94038613d60f56fc5adcca2dc485471 100644 (file)
@@ -22,8 +22,6 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: gnu_classpath_VMSystemProperties.c 7910 2007-05-16 08:02:52Z twisti $
-
 */
 
 
@@ -79,9 +77,9 @@ void _Jv_gnu_classpath_VMSystemProperties_init(void)
  */
 JNIEXPORT void JNICALL Java_gnu_classpath_VMSystemProperties_preInit(JNIEnv *env, jclass clazz, java_util_Properties *properties)
 {
-       java_objectheader *p;
+       java_handle_t *p;
 
-       p = (java_objectheader *) properties;
+       p = (java_handle_t *) properties;
 
        if (p == NULL) {
                exceptions_throw_nullpointerexception();
@@ -101,13 +99,13 @@ JNIEXPORT void JNICALL Java_gnu_classpath_VMSystemProperties_preInit(JNIEnv *env
  */
 JNIEXPORT void JNICALL Java_gnu_classpath_VMSystemProperties_postInit(JNIEnv *env, jclass clazz, java_util_Properties *properties)
 {
-       java_objectheader *p;
+       java_handle_t *p;
 #if defined(WITH_JRE_LAYOUT)
        char *path;
        s4    len;
 #endif
 
-       p = (java_objectheader *) properties;
+       p = (java_handle_t *) properties;
 
        if (p == NULL) {
                exceptions_throw_nullpointerexception();