From 88c5045220060af66c5dffd3f33cead6170e8fb3 Mon Sep 17 00:00:00 2001 From: Jason Wells Date: Tue, 10 Sep 2024 16:31:00 -0700 Subject: [PATCH] documented companion switches --- .../com/nuix/superutilities/export/CustomExporter.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Java/SuperUtilities/src/main/java/com/nuix/superutilities/export/CustomExporter.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/export/CustomExporter.java index 97ab80f..9a09804 100644 --- a/Java/SuperUtilities/src/main/java/com/nuix/superutilities/export/CustomExporter.java +++ b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/export/CustomExporter.java @@ -88,7 +88,13 @@ public class CustomExporter { * then logic is added that checks the size of the text file Nuix exported for each item. If the exported text file * is zero bytes, then it will NOT be copied into the final restructuring and the TEXTPATH column for that * item (if it is being included in final DAT) will have a blank value. It is important to note this has no effect - * on zero byte native text files, just the text files that are produced by Nuix. + * on zero byte native text files, just the text files that are produced by Nuix. Note that to even get zero byte + * text files for items with no text content, you may need to use the following arguments to Nuix as it will otherwise + * put message in the text files like "item had no text" which will defeat the zero byte detection:
+ * */ @Setter private boolean dropZeroByteTextFiles = false;