From 4b519219defe0e786ae5fafc71b59cb99cf3a54c Mon Sep 17 00:00:00 2001 From: Eli Collins Date: Mon, 16 Jul 2012 21:49:35 +0000 Subject: [PATCH] Amend HDFS-3666, applied earlier version of the patch. git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1362278 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/java/org/apache/hadoop/util/ExitUtil.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/ExitUtil.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/ExitUtil.java index 8adcb13ac4..a4af34666e 100644 --- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/ExitUtil.java +++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/ExitUtil.java @@ -85,9 +85,10 @@ public static void terminate(int status, String msg) throws ExitException { } /** - * Like {@link terminate(int, String)} but takes an exception to + * Like {@link terminate(int, String)} but uses the given throwable to + * initialize the ExitException. * @param status - * @param t Exception + * @param t throwable used to create the ExitException * @throws ExitException if System.exit is disabled for test purposes */ public static void terminate(int status, Throwable t) throws ExitException {