Skip to content

Commit cc6d571

Browse files
committed
Better names.
1 parent b856ffc commit cc6d571

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

src/main/java/org/apache/commons/io/input/CloseShieldInputStream.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
/**

src/main/java/org/apache/commons/io/input/CloseShieldReader.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
/**

src/main/java/org/apache/commons/io/output/CloseShieldOutputStream.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
/**

src/main/java/org/apache/commons/io/output/CloseShieldWriter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
/**

0 commit comments

Comments
 (0)