X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/40d3634e5448cd560a6989d07d10ec30e85cf533..d2990e6ae897aeb38681ef24acfa01935acf8354:/src/bindings/java/org/simgrid/msg/Msg.java diff --git a/src/bindings/java/org/simgrid/msg/Msg.java b/src/bindings/java/org/simgrid/msg/Msg.java index bd49fd24b4..b53f5b5f22 100644 --- a/src/bindings/java/org/simgrid/msg/Msg.java +++ b/src/bindings/java/org/simgrid/msg/Msg.java @@ -7,8 +7,6 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ package org.simgrid.msg; -import org.simgrid.NativeLib; - public final class Msg { @@ -46,10 +44,8 @@ public final class Msg { /** Run the MSG simulation. * - * The simulation is not cleaned afterward (see - * {@link #clean()} if you really insist on cleaning the C side), so you can freely - * retrieve the information that you want from the simulation. In particular, retrieving the status - * of a process or the current date is perfectly ok. + * After the simulation, you can freely retrieve the information that you want.. + * In particular, retrieving the status of a process or the current date is perfectly ok. */ public static final native void run() ; @@ -65,7 +61,7 @@ public final class Msg { * @param args * @throws MsgException */ - static public void main(String[]args) throws MsgException { + public static void main(String[]args) throws MsgException { /* initialize the MSG simulation. Must be done before anything else (even logging). */ Msg.init(args);