From: Samuel Lepetit Date: Tue, 12 Jun 2012 08:59:39 +0000 (+0200) Subject: Remove useless fields in Msg X-Git-Tag: v3_9_90~569^2~19^2~54^2~18 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/d9585efbbbfc5e6f8c4ce228f407732fa9209c3c Remove useless fields in Msg --- diff --git a/org/simgrid/msg/Msg.java b/org/simgrid/msg/Msg.java index a4db8becd3..c2b9cd720f 100644 --- a/org/simgrid/msg/Msg.java +++ b/org/simgrid/msg/Msg.java @@ -24,28 +24,6 @@ public final class Msg { System.exit(1); } } - - /** Everything is right. Keep on going the way ! */ - public static final int SUCCESS = 0; - - /** Something must be not perfectly clean (but I may be paranoid freak...) */ - public static final int WARNING = 1; - - /** There has been a problem during your task transfer. - * Either the network is down or the remote host has been shutdown */ - public static final int TRANSFERT_FAILURE = 2; - - /** System shutdown. - * The host on which you are running has just been rebooted. - * Free your data structures and return now ! */ - public static final int HOST_FAILURE = 3; - - /** Canceled task. This task has been canceled by somebody ! */ - public static final int TASK_CANCELLLED = 4; - - /** You've done something wrong. You'd better look at it... */ - public static final int FATAL_ERROR = 5; - /** Retrieve the simulation time * @return */