提交 94d81b01 编写于 作者: J Jesse Glick

Missing deprecation from #1135.

上级 ef474202
......@@ -450,6 +450,9 @@ public class IOUtils {
org.apache.commons.io.IOUtils.writeLines(lines, lineEnding, writer);
}
/**
* @deprecated Use instead {@link org.apache.commons.io.IOUtils#copy(java.io.InputStream, java.io.OutputStream)}
*/
public static int copy(InputStream input, OutputStream output) throws IOException {
return org.apache.commons.io.IOUtils.copy(input, output);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册