From d9585efbbbfc5e6f8c4ce228f407732fa9209c3c Mon Sep 17 00:00:00 2001 From: Samuel Lepetit Date: Tue, 12 Jun 2012 10:59:39 +0200 Subject: [PATCH] Remove useless fields in Msg --- org/simgrid/msg/Msg.java | 22 ---------------------- 1 file changed, 22 deletions(-) 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 */ -- 2.20.1