Skip to content

Commit

Permalink
Merge pull request #1 from bkirschn/master
Browse files Browse the repository at this point in the history
changes in support of Java 8
  • Loading branch information
azeckoski committed Mar 7, 2015
2 parents f16d85e + 0818be0 commit 3a81ea9
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,13 +173,7 @@ public Enumeration<V> elements() {
transient Set<K> keySet;
transient Set<Map.Entry<K,V>> entrySet;
transient Collection<V> values;

@Override
public Set<K> keySet() {
Set<K> ks = keySet;
return (ks != null) ? ks : (keySet = new KeySet());
}


@Override
public Collection<V> values() {
Collection<V> vs = values;
Expand Down

0 comments on commit 3a81ea9

Please sign in to comment.