Skip to content

Commit

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

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

@Override
Expand Down

0 comments on commit e28faec

Please sign in to comment.