From: Martin Quinson Date: Mon, 20 Mar 2017 21:46:24 +0000 (+0100) Subject: jprocess: more cruft removed X-Git-Tag: v3_15~45 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/fa0d8b3a77e9e5bf004f961455cdc5d9e49dcaec jprocess: more cruft removed --- diff --git a/src/bindings/java/org/simgrid/msg/Process.java b/src/bindings/java/org/simgrid/msg/Process.java index 15cd7e5854..4e9247b0c4 100644 --- a/src/bindings/java/org/simgrid/msg/Process.java +++ b/src/bindings/java/org/simgrid/msg/Process.java @@ -48,18 +48,6 @@ public abstract class Process implements Runnable { */ private long bind = 0; /** Indicates if the process is started */ - /** - * Even if this attribute is public you must never access to it. - * It is used to compute the id of an MSG process. - */ - private static long nextProcessId = 0; - - /** - * Even if this attribute is public you must never access to it. - * It is compute automatically during the creation of the object. - * The native functions use this identifier to synchronize the process. - */ - private long id; /** Time at which the process should be created */ protected double startTime = 0; @@ -132,7 +120,6 @@ public abstract class Process implements Runnable { if (name == null) throw new NullPointerException("Process name cannot be null"); - this.id = nextProcessId++; this.host = host; this.name = name;