From: cherierm Date: Mon, 24 Sep 2007 12:16:51 +0000 (+0000) Subject: Indeed, the sax.helpers and java.lang importation are not useful, i have removed... X-Git-Tag: v3.3~1097 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b69b6e67e893ddd809ba10284c74996b54392247?hp=02c6d9a528c1e0f288a782d72f227a4bb8463d63 Indeed, the sax.helpers and java.lang importation are not useful, i have removed them. The dll is now called simgrid4java. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4694 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/java/simgrid/msg/Msg.java b/src/java/simgrid/msg/Msg.java index 3e9582f69a..00384e7937 100644 --- a/src/java/simgrid/msg/Msg.java +++ b/src/java/simgrid/msg/Msg.java @@ -10,10 +10,7 @@ */ package simgrid.msg; - -import java.lang.*; import org.xml.sax.*; -import org.xml.sax.helpers.*; /** * MSG was the first distributed programming environment @@ -86,7 +83,7 @@ public final class Msg { */ static { try { - System.loadLibrary("libSimgrid4java"); + System.loadLibrary("simgrid4java"); } catch(UnsatisfiedLinkError e){ System.err.println("Cannot load simgrid4java library : "); e.printStackTrace();