From: alebre Date: Thu, 4 Jul 2013 09:27:00 +0000 (+0200) Subject: cosmetic changes - Adrien X-Git-Tag: v3_11_beta~297^2^2~24 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/f85650eada1424541ff41e4b47d3c194195e9072?ds=sidebyside;hp=0d30bd16eb15415a787a20b2c7ece468500c2487 cosmetic changes - Adrien --- diff --git a/src/bindings/java/org/simgrid/msg/VM.java b/src/bindings/java/org/simgrid/msg/VM.java index 03edd5b766..238ed6a3df 100644 --- a/src/bindings/java/org/simgrid/msg/VM.java +++ b/src/bindings/java/org/simgrid/msg/VM.java @@ -23,7 +23,6 @@ public class VM extends Host{ private static VM[] vms=null; private Host currentHost; - private int dpIntensity = 0 ; /* Constructors / destructors */ /** @@ -51,7 +50,6 @@ public class VM extends Host{ super(); super.name = name; this.currentHost = host; - this.dpIntensity = dpIntensity; create(host, name, nCore, ramSize, netCap, diskPath, diskSize, migNetSpeed, dpIntensity); VM.addVM(this); } @@ -158,11 +156,7 @@ public class VM extends Host{ * (pre-copy is implemented) */ public void migrate(Host destination){ - Msg.info("Start migration of VM "+this.getName()+" to node "+destination.getName()); - Msg.info(" dpIntensity:"+this.dpIntensity); - this.internalmig(destination); - Msg.info("End of migration of VM "+this.getName()+" to node "+destination.getName()); } /** Immediately suspend the execution of all processes within the given VM