add internal annotation

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1912727 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2023-10-04 07:48:57 +00:00
parent e8e6f671ef
commit 42651f6eda
1 changed files with 3 additions and 0 deletions

View File

@ -17,9 +17,12 @@
package org.apache.poi.openxml4j.opc.internal;
import org.apache.poi.util.Internal;
import java.io.FilterInputStream;
import java.io.InputStream;
@Internal
final class NoCloseInputStream extends FilterInputStream {
NoCloseInputStream(InputStream stream) {
super(stream);