diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2018-11-26 21:27:30 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2018-11-26 21:27:30 +0000 |
commit | 12baa02efaa4f3ee2ac7ac875718eb2d68c14513 (patch) | |
tree | 40b69c1945b9d2238365e3e3455b5dd4db43e7f2 /src/java/org/apache/poi/util | |
parent | d9b2b80668e17b454ad747a085754adedb705154 (diff) | |
parent | 42f7b8b8472080ee8ab50fa9f528ff0d76232e6f (diff) | |
download | poi-REL_4_0_1.tar.gz poi-REL_4_0_1.zip |
tag r1847494 as 4.0.1REL_4_0_1
git-svn-id: https://svn.apache.org/repos/asf/poi/tags/REL_4_0_1@1847495 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/util')
-rw-r--r-- | src/java/org/apache/poi/util/RecordFormatException.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/poi/util/RecordFormatException.java b/src/java/org/apache/poi/util/RecordFormatException.java index 2bc4ba3bcb..65bea581ee 100644 --- a/src/java/org/apache/poi/util/RecordFormatException.java +++ b/src/java/org/apache/poi/util/RecordFormatException.java @@ -45,8 +45,8 @@ public class RecordFormatException * be thrown. If assertTrue is <code>false</code>, this will throw this * exception with the message. * - * @param assertTrue - * @param message + * @param assertTrue If false, the exception is thrown, if true, no action is performed + * @param message The message to include in the thrown exception */ public static void check(boolean assertTrue, String message) { if (! assertTrue) { |