Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove a useless FIXME (since it has already been fixed)
authorSamuel Lepetit <samuel.lepetit@inria.fr>
Thu, 7 Jun 2012 20:30:15 +0000 (22:30 +0200)
committerSamuel Lepetit <samuel.lepetit@inria.fr>
Thu, 7 Jun 2012 20:30:15 +0000 (22:30 +0200)
src/jmsg_host.c

index c01a132..9fae1d7 100644 (file)
@@ -56,7 +56,6 @@ JNIEXPORT void JNICALL
 Java_org_simgrid_msg_Host_nativeInit(JNIEnv *env, jclass cls) {
        jclass class_Host = (*env)->FindClass(env, "org/simgrid/msg/Host");
        jhost_method_Host_constructor = (*env)->GetMethodID(env, class_Host, "<init>", "()V");
-       //FIXME: Don't use jxbt_get_sfield directly, it is slower.
        jhost_field_Host_bind = jxbt_get_jfield(env,class_Host, "bind", "J");
        jhost_field_Host_name = jxbt_get_jfield(env, class_Host, "name", "Ljava/lang/String;");
        if (!class_Host || !jhost_field_Host_name || !jhost_method_Host_constructor || !jhost_field_Host_bind) {