From 76962c143c81abeef72de40abd25553c52e9f2ba Mon Sep 17 00:00:00 2001 From: Andreas Beeker Date: Mon, 9 Aug 2021 23:50:22 +0000 Subject: [PATCH] convert link to internal jdk api to preformatted code git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892147 13f79535-47bb-0310-9956-ffa450edef68 --- .../poi/util/TempFileCreationStrategy.java | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/poi/src/main/java/org/apache/poi/util/TempFileCreationStrategy.java b/poi/src/main/java/org/apache/poi/util/TempFileCreationStrategy.java index d576f08857..30395dda35 100644 --- a/poi/src/main/java/org/apache/poi/util/TempFileCreationStrategy.java +++ b/poi/src/main/java/org/apache/poi/util/TempFileCreationStrategy.java @@ -22,10 +22,10 @@ import java.io.IOException; /** * Interface used by the {@link TempFile} utility class to create temporary files. - * + * * Classes that implement a TempFileCreationStrategy attempt to handle the cleanup * of temporary files. - * + * * Examples include: * - * + * */ public interface TempFileCreationStrategy { /** @@ -66,22 +66,22 @@ public interface TempFileCreationStrategy { * * @param prefix The prefix to be used to generate the name of the temporary file. * @param suffix The suffix to be used to generate the name of the temporary file. - * + * * @return The path to the newly created and empty temporary file. - * + * * @throws IOException If no temporary file could be created. */ File createTempFile(String prefix, String suffix) throws IOException; - + /** * Creates a new and empty temporary directory. * * @param prefix The directory name to be used to generate the name of the temporary directory. - * + * * @return The path to the newly created and empty temporary directory. - * + * * @throws IOException If no temporary directory could be created. - * + * * @since POI 3.15 beta 3. */ File createTempDirectory(String prefix) throws IOException; -- 2.39.5