X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/120ccccaa823e43ad226caa1e22198f3ffff9f47..0424e24e1f270b3c65b20e994079679b18be3eb8:/examples/java/cloud/migration/Test.java diff --git a/examples/java/cloud/migration/Test.java b/examples/java/cloud/migration/Test.java index c64a4dcad5..36f98b3d0e 100644 --- a/examples/java/cloud/migration/Test.java +++ b/examples/java/cloud/migration/Test.java @@ -8,12 +8,17 @@ package cloud.migration; import java.util.ArrayList; import java.util.List; -import org.simgrid.msg.*; +import org.simgrid.msg.Host; +import org.simgrid.msg.HostFailureException; +import org.simgrid.msg.HostNotFoundException; +import org.simgrid.msg.Msg; +import org.simgrid.msg.MsgException; import org.simgrid.msg.Process; +import org.simgrid.msg.VM; public class Test extends Process{ - Test(String hostname, String name) throws HostNotFoundException, NativeException { + Test(String hostname, String name) throws HostNotFoundException { super(hostname, name); }