diff options
author | Samuel Tardieu <sam@rfc1149.net> | 2013-09-15 13:33:58 +0200 |
---|---|---|
committer | Samuel Tardieu <sam@rfc1149.net> | 2013-09-15 13:36:37 +0200 |
commit | f52afc22db9c8fb6543ff999ecdea4ea16277c83 (patch) | |
tree | 4a52f8d668ee04ee22be6fbdb21e8333ca35fb43 /main/src/cgeo/geocaching/gcvote | |
parent | d840331b2b260142dd7974281c05f83c2ddfc115 (diff) | |
download | cgeo-f52afc22db9c8fb6543ff999ecdea4ea16277c83.zip cgeo-f52afc22db9c8fb6543ff999ecdea4ea16277c83.tar.gz cgeo-f52afc22db9c8fb6543ff999ecdea4ea16277c83.tar.bz2 |
Update to CollectionUtils 4.0-alpha1
This is an alpha release, but has been well tested already. The major
changes are the use of generics, varargs and Iterable.
The release notes can be found at:
http://commons.apache.org/proper/commons-collections/release_4_0.html
Diffstat (limited to 'main/src/cgeo/geocaching/gcvote')
-rw-r--r-- | main/src/cgeo/geocaching/gcvote/GCVote.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/gcvote/GCVote.java b/main/src/cgeo/geocaching/gcvote/GCVote.java index f20a6d4..b245aa9 100644 --- a/main/src/cgeo/geocaching/gcvote/GCVote.java +++ b/main/src/cgeo/geocaching/gcvote/GCVote.java @@ -8,7 +8,7 @@ import cgeo.geocaching.utils.LeastRecentlyUsedMap; import cgeo.geocaching.utils.Log; import cgeo.geocaching.utils.MatcherWrapper; -import org.apache.commons.collections.MapUtils; +import org.apache.commons.collections4.MapUtils; import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.tuple.ImmutablePair; |