diff options
author | Dominik Stadler <centic@apache.org> | 2018-11-25 21:56:43 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2018-11-25 21:56:43 +0000 |
commit | d28720afd08d1998a7784f09e6cfd5ed9bec2dc9 (patch) | |
tree | 98e3741a997796f090353cb473a4602973c90d93 /src/java/org/apache/poi/util | |
parent | 061db56f2d5026b9c2e698ccf8773153b8942d68 (diff) | |
download | poi-d28720afd08d1998a7784f09e6cfd5ed9bec2dc9.tar.gz poi-d28720afd08d1998a7784f09e6cfd5ed9bec2dc9.zip |
Add test for FileMagic
JavaDoc warning fixes
Remove some IDE warnings
Reformat code of sample application
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1847437 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) { |