Skip to content

Commit

Permalink
Parameter name changed
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriciofx committed Jun 26, 2017
1 parent 427bcda commit 307e820
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/cactoos/list/MapEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ public final class MapEntry<K, V> implements Map.Entry<K, V> {

/**
* Ctor.
* @param key The key of the entry's map.
* @param ky The key of the entry's map.
* @param val The value associated to the key of the entry's map.
*/
public MapEntry(final K key, final V val) {
this.key = key;
public MapEntry(final K ky, final V val) {
this.key = ky;
this.value = val;
}

Expand Down

0 comments on commit 307e820

Please sign in to comment.