]> source.dussan.org Git - poi.git/commitdiff
Apply some IDE suggestions, improve JavaDoc and simplify reporting log messages
authorDominik Stadler <centic@apache.org>
Thu, 18 Jul 2024 07:10:35 +0000 (07:10 +0000)
committerDominik Stadler <centic@apache.org>
Thu, 18 Jul 2024 07:10:35 +0000 (07:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1919343 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/main/java/org/apache/poi/openxml4j/util/ZipArchiveFakeEntry.java
poi-ooxml/src/main/java/org/apache/poi/xdgf/usermodel/XmlVisioDocument.java
poi/src/main/java/org/apache/poi/ddf/EscherRecord.java

index edb8817bed3da05c49a37f5f02d7a6bb82592560..f5a5ee51593a4a68a194a40fd41173bb813df395 100644 (file)
@@ -69,8 +69,8 @@ import org.apache.poi.util.TempFile;
                 }
             } else {
                 tempFile = TempFile.createTempFile("poi-zip-entry", ".tmp");
-                LOG.atInfo().log("created for temp file {} for zip entry {} of size {} bytes",
-                        () -> tempFile.getAbsolutePath(), entry::getName, () -> entrySize);
+                LOG.atInfo().log("Creating temp file {} for zip entry {} of size {} bytes",
+                        tempFile.getAbsolutePath(), entry.getName(), entrySize);
                 IOUtils.copy(inp, tempFile);
             }
         } else {
index 55e724e79bb934b63a92507b9b4913b6edabf12a..e6195a85781c151df43ba0ad54c63bc0ec6aa6a3 100644 (file)
@@ -59,6 +59,11 @@ public class XmlVisioDocument extends POIXMLDocument {
     protected XDGFMasters _masters;
     protected XDGFDocument _document;
 
+    /**
+     * Construct a VisioDocument from the given OPCPackage
+     * @param pkg The xml-base input for the Visio document
+     * @throws IOException If parsing the document fails
+     */
     public XmlVisioDocument(OPCPackage pkg) throws IOException {
         super(pkg, PackageRelationshipTypes.VISIO_CORE_DOCUMENT);
 
@@ -78,7 +83,7 @@ public class XmlVisioDocument extends POIXMLDocument {
 
     /**
      * @param stream InputStream - closed when it is read
-     * @throws IOException
+     * @throws IOException If parsing the document fails
      */
     public XmlVisioDocument(InputStream stream) throws IOException {
         this(stream, true);
@@ -87,7 +92,7 @@ public class XmlVisioDocument extends POIXMLDocument {
     /**
      * @param stream InputStream
      * @param closeStream Whether to close the InputStream
-     * @throws IOException
+     * @throws IOException If parsing the document fails
      * @since POI 5.2.5
      */
     public XmlVisioDocument(InputStream stream, boolean closeStream) throws IOException {
index e633a9207911427ae81afd0b307b789c47541a8a..de5b95b22dc8fedf354ee741401fcadedeb861cb 100644 (file)
@@ -373,14 +373,14 @@ public abstract class EscherRecord implements Duplicatable, GenericRecord {
     public abstract EscherRecord copy();
 
     /**
-     * @param length the max record length allowed for EscherArrayProperty
+     * @param length the max number of children allowed for EscherRecords which support nesting
      */
     public static void setMaxNumberOfChildren(int length) {
         MAX_NUMBER_OF_CHILDREN = length;
     }
 
     /**
-     * @return the max record length allowed for EscherArrayProperty
+     * @return the max number of children allowed for EscherRecords which support nesting
      */
     public static int getMaxNumberOfChildren() {
         return MAX_NUMBER_OF_CHILDREN;