Updated javadocs : warning about closing stream responsibility.

pull/88/head
luccioman 8 years ago
parent 6f49ece22f
commit ee92082a3b

@ -74,7 +74,7 @@ public final class FileUtils {
} }
/** /**
* Copies an InputStream to an OutputStream. * Copies an InputStream to an OutputStream. Important : it is the responsibility of the caller to close the input and output streams.
* *
* @param source InputStream * @param source InputStream
* @param dest OutputStream * @param dest OutputStream
@ -165,7 +165,7 @@ public final class FileUtils {
} }
/** /**
* Copies an InputStream to a File. * Copies an InputStream to a File. Important : it is the responsibility of the caller to close the source stream.
* *
* @param source InputStream * @param source InputStream
* @param dest File * @param dest File
@ -235,7 +235,7 @@ public final class FileUtils {
} }
/** /**
* Copies a File to an OutputStream. * Copies a File to an OutputStream. Important : it is the responsibility of the caller to close the output stream.
* *
* @param source File * @param source File
* @param dest OutputStream * @param dest OutputStream

Loading…
Cancel
Save