Skip to content

Commit

Permalink
added @SuppressWarnings(unchecked) to silent compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Luigi R. Viggiano committed Dec 9, 2013
1 parent 45d2e6e commit 1812f74
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ private EntryMap(Entry<K, V>... entries) {
this.entries = set(entries);
}

@SuppressWarnings("unchecked")
private EntryMap(K key, V value) {
this(entry(key, value));
}
Expand Down

0 comments on commit 1812f74

Please sign in to comment.