From 11b3b034128af9ec778332da67ba4d9ef615399a Mon Sep 17 00:00:00 2001 From: Samuel Lepetit Date: Wed, 9 May 2012 15:58:40 +0200 Subject: [PATCH] Removed the HostFailureException from waitFor, since it's never thrown --- org/simgrid/msg/Process.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/org/simgrid/msg/Process.java b/org/simgrid/msg/Process.java index bd3f943b40..fa0f4af469 100644 --- a/org/simgrid/msg/Process.java +++ b/org/simgrid/msg/Process.java @@ -311,12 +311,10 @@ public abstract class Process extends Thread { } /** * Makes the current process sleep until time seconds have elapsed. - * * @param seconds The time the current process must sleep. - * - * @exception HostFailureException on error in the native SimGrid code */ - public native void waitFor(double seconds) throws HostFailureException; /** + public native void waitFor(double seconds); + /** * */ public void showArgs() { -- 2.20.1