Skip to content

Commit

Permalink
(yegor256#1035) org.cactoos.io.Joined: add a Ctor of Iterable<Input> …
Browse files Browse the repository at this point in the history
…(Ctor arg rename)
  • Loading branch information
ilyakharlamov committed Jan 25, 2019
1 parent 238f6b3 commit 1826c76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/cactoos/io/Joined.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ public final class Joined implements Input {

/**
* Ctor.
* @param inputs Iterable of inputs
* @param ipts Iterable of inputs
*/
public Joined(final Iterable<Input> inputs) {
this.inputs = inputs;
public Joined(final Iterable<Input> ipts) {
this.inputs = ipts;
}

/**
Expand Down

0 comments on commit 1826c76

Please sign in to comment.