timtebeek commented on code in PR #156: URL: https://github.com/apache/maven-doxia/pull/156#discussion_r1141969237
########## doxia-core/src/test/java/org/apache/maven/doxia/sink/impl/AbstractSinkTest.java: ########## @@ -110,7 +110,7 @@ public final void testTestDocument() throws IOException { SinkTestDocument.generate(testSink); } finally { testSink.close(); - IOUtil.close(writer); + IOUtils.close(writer); Review Comment: It's `Sink.close()` documented as that it should: ```java /** * Close the writer or the stream, if needed. * Closing a previously-closed Sink has no effect. */ void close(); ``` So I'll go ahead and make that change here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org