From 4a51090ae7068081880cc20942790818e1c93e39 Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Tue, 20 Jun 2017 09:04:02 +0000 Subject: [PATCH] Javadoc fix git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1799320 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/poi/util/IOUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/apache/poi/util/IOUtils.java b/src/java/org/apache/poi/util/IOUtils.java index 3af010b7b..1ae7ed8d6 100644 --- a/src/java/org/apache/poi/util/IOUtils.java +++ b/src/java/org/apache/poi/util/IOUtils.java @@ -258,7 +258,7 @@ public final class IOUtils { } /** - * Like {@link #write(POIDocument, File)}, but for writing a POI Document in place (to the same file that it was opened from). + * Like {@link #writeAndClose(POIDocument, File)}, but for writing a POI Document in place (to the same file that it was opened from). * This will attempt to close the document, even if an error occurred while writing the document. * * If you are using Java 7 or higher, you may prefer to use a try-with-resources statement instead.