File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/io Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,14 +44,14 @@ public static CloseShieldInputStream wrap(final InputStream inputStream) {
4444 /**
4545 * Creates a proxy that shields the given input stream from being closed.
4646 *
47- * @param in underlying input stream
47+ * @param inputStream underlying input stream
4848 * @deprecated Using this constructor prevents IDEs from warning if the
4949 * underlying input stream is never closed. Use
5050 * {@link #wrap(InputStream)} instead.
5151 */
5252 @ Deprecated
53- public CloseShieldInputStream (final InputStream in ) {
54- super (in );
53+ public CloseShieldInputStream (final InputStream inputStream ) {
54+ super (inputStream );
5555 }
5656
5757 /**
Original file line number Diff line number Diff line change @@ -44,14 +44,14 @@ public static CloseShieldReader wrap(final Reader reader) {
4444 /**
4545 * Creates a proxy that shields the given reader from being closed.
4646 *
47- * @param in underlying reader
47+ * @param reader underlying reader
4848 * @deprecated Using this constructor prevents IDEs from warning if the
4949 * underlying reader is never closed. Use {@link #wrap(Reader)}
5050 * instead.
5151 */
5252 @ Deprecated
53- public CloseShieldReader (final Reader in ) {
54- super (in );
53+ public CloseShieldReader (final Reader reader ) {
54+ super (reader );
5555 }
5656
5757 /**
Original file line number Diff line number Diff line change @@ -44,14 +44,14 @@ public static CloseShieldOutputStream wrap(final OutputStream outputStream) {
4444 /**
4545 * Creates a proxy that shields the given output stream from being closed.
4646 *
47- * @param out underlying output stream
47+ * @param outputStream underlying output stream
4848 * @deprecated Using this constructor prevents IDEs from warning if the
4949 * underlying output stream is never closed. Use
5050 * {@link #wrap(OutputStream)} instead.
5151 */
5252 @ Deprecated
53- public CloseShieldOutputStream (final OutputStream out ) {
54- super (out );
53+ public CloseShieldOutputStream (final OutputStream outputStream ) {
54+ super (outputStream );
5555 }
5656
5757 /**
Original file line number Diff line number Diff line change @@ -44,14 +44,14 @@ public static CloseShieldWriter wrap(final Writer writer) {
4444 /**
4545 * Creates a proxy that shields the given writer from being closed.
4646 *
47- * @param out underlying writer
47+ * @param writer underlying writer
4848 * @deprecated Using this constructor prevents IDEs from warning if the
4949 * underlying writer is never closed. Use {@link #wrap(Writer)}
5050 * instead.
5151 */
5252 @ Deprecated
53- public CloseShieldWriter (final Writer out ) {
54- super (out );
53+ public CloseShieldWriter (final Writer writer ) {
54+ super (writer );
5555 }
5656
5757 /**
You can’t perform that action at this time.
0 commit comments