You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/11/11 22:01:54 UTC

svn commit: r3477 - in /dev/commons/collections: ./ binaries/ source/

Author: tn
Date: Mon Nov 11 21:01:49 2013
New Revision: 3477

Log:
Copy distribution files for Commons Collections 4.0 RC3.

Modified:
    dev/commons/collections/RELEASE-NOTES.txt
    dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz
    dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.asc
    dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.md5
    dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.sha1
    dev/commons/collections/binaries/commons-collections4-4.0-bin.zip
    dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.asc
    dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.md5
    dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.sha1
    dev/commons/collections/source/commons-collections4-4.0-src.tar.gz
    dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.asc
    dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.md5
    dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.sha1
    dev/commons/collections/source/commons-collections4-4.0-src.zip
    dev/commons/collections/source/commons-collections4-4.0-src.zip.asc
    dev/commons/collections/source/commons-collections4-4.0-src.zip.md5
    dev/commons/collections/source/commons-collections4-4.0-src.zip.sha1

Modified: dev/commons/collections/RELEASE-NOTES.txt
==============================================================================
--- dev/commons/collections/RELEASE-NOTES.txt (original)
+++ dev/commons/collections/RELEASE-NOTES.txt Mon Nov 11 21:01:49 2013
@@ -25,12 +25,13 @@
 should remember that this is a new API based on the original, so some concepts
 have changed.
 
-Compatibility with previous releases
-------------------------------------
+Compatibility
+-------------
 
-This release is not source or binary compatible with previous releases of
-Commons Collections. This includes releases from the 3.x branch as well as
-preceding alpha releases for 4.0 (see details of changes below).
+ o Java 5 or later is required.
+ o This release is not source or binary compatible with previous releases of
+   Commons Collections. This includes releases from the 3.x branch as well as
+   preceding alpha releases for 4.0 (see details of changes below).
 
 
 Major changes since 3.2.1
@@ -46,6 +47,18 @@
 Changes since 4.0-alpha1
 ------------------------
 
+ o [COLLECTIONS-499] Refactored the test framework for Bag implementations to extend from
+                     "AbstractCollectionTest" by decorating the concrete Bag instance with
+                     a CollectionBag or CollectionSortedBag. 
+ o [COLLECTIONS-498] "CollectionBag" will now also respect the contract of the decorated bag in case
+                     a null argument is provided to either removeAll or retainAll.
+ o [COLLECTIONS-497] Added bag decorator "CollectionSortedBag" which decorates a SortedBag to make it
+                     comply with the Collection contract.
+ o [COLLECTIONS-496] "UnmodifiableBoundedCollection" does now also implement the marker interface "Unmodifiable"
+                     similar as all other unmodifiable decorators.
+ o [COLLECTIONS-495] "UnmodifiableTrie#unmodifiableTrie(Trie)" will not decorate again an already unmodifiable Trie.
+                     Also the return type has been changed to "Trie" to be consistent with other Unmodifiable decorators.
+ o [COLLECTIONS-494] Moved "Equator" interface to base package for consistency. Thanks to Emmanuel Bourg.
  o [COLLECTIONS-488] Added "CollectionsUtils#matchesAll(Iterable, Predicate)" to test if all elements
                      of a collection match a given predicate. Thanks to Josh Cain.
  o [COLLECTIONS-485] Accept wildcard input where possible, e.g. in copy-constructors, Unmodifiable* decorators
@@ -70,7 +83,7 @@
    - BoundedBuffer: use either ArrayBlockingBuffer(capacity) or LinkedBlockingBuffer(capacity) in java.util.concurrent
    - UnboundedFifoBuffer: use either java.util.LinkedList or java.util.concurrent.LinkedBlockingBuffer
                      
- o [COLLECTIONS-351] Removed features now supported by the JDK
+ o [COLLECTIONS-351] Removed features now supported by the JDK or other Apache Commons libraries
  
    - FastArrayList: use java.util.concurrent.CopyOnWriteArrayList
    - FastHashMap: use java.util.concurrent.ConcurrentHashMap, but beware of null keys and values
@@ -87,6 +100,7 @@
 New classes
 -----------
 
+ o [COLLECTIONS-497] CollectionSortedBag - decorates a SortedBag to make it comply with the Collection contract.
  o [COLLECTIONS-468] CollectionBag - decorates another Bag to make it comply with the Collection contract.
  o [COLLECTIONS-463] PushbackIterator - supports pushback of elements during iteration. Thanks to Andy Seaborne, Claude Warren.
  o [COLLECTIONS-462] PeekingIterator - supports one-element lookahead during iteration. Thanks to Andy Seaborne, Claude Warren.
@@ -157,6 +171,14 @@
 Changed classes / methods
 -------------------------
 
+ o [COLLECTIONS-499] Refactored the test framework for Bag implementations to extend from
+                     "AbstractCollectionTest" by decorating the concrete Bag instance with
+                     a CollectionBag or CollectionSortedBag. 
+ o [COLLECTIONS-496] "UnmodifiableBoundedCollection" does now also implement the marker interface "Unmodifiable"
+                     similar as all other unmodifiable decorators.
+ o [COLLECTIONS-495] "UnmodifiableTrie#unmodifiableTrie(Trie)" will not decorate again an already unmodifiable Trie.
+                     Also the return type has been changed to "Trie" to be consistent with other Unmodifiable decorators.
+ o [COLLECTIONS-494] Moved "Equator" interface to base package for consistency. Thanks to Emmanuel Bourg.
  o [COLLECTIONS-485] Accept wildcard input where possible, e.g. in copy-constructors, Unmodifiable* decorators
                      and iterators. Thanks to Hollis Waite.
  o [COLLECTIONS-480] Narrow return type of "BidiMap#values()" to Set as the values are required to be unique. Thanks to Hollis Waite.
@@ -220,6 +242,8 @@
 Fixed Bugs
 ----------
 
+ o [COLLECTIONS-498] "CollectionBag" will now also respect the contract of the decorated bag in case
+                     a null argument is provided to either removeAll or retainAll.
  o [COLLECTIONS-481] No collision detection/resolution was performed when calling "CompositeSet#addComposited(...)"
                      with more than one Set as argument. Additionally use varargs parameters instead of arrays
                      in CompositeSet and CompositeCollection constructor and addComposited method. Thanks to Hollis Waite.

Modified: dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz
==============================================================================
Binary files - no diff available.

Modified: dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.asc
==============================================================================
--- dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.asc (original)
+++ dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.asc Mon Nov 11 21:01:49 2013
@@ -1,17 +1,17 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.11 (GNU/Linux)
 
-iQIcBAABAgAGBQJSfK7yAAoJEKQfE8mZlFKTx7YQAIPxHarXcA9nHj78QSJCJuh0
-WVLtQIqNgPf7bn/XoVzZ2l4UbkjzrJkQLl3B7e3NeW7hfpTFed4TqvSqRQIza1vx
-n6zVGoq/ePQYZRrfiBfg+vu1We9kgauIrHIzx3BDHfl36VKAUhbsMzVCULS5Wq2J
-jalcz9fj9fJsT9C0ITd+SiZt32IiDJ9ZSePAs+zrKHUDDZpJt1uN9N1RKZVEU0S2
-S2fOIoQxN5Va354tqVut3pFroH71p2WyYZ6iau+bepw2929/qOb8MRN3Ct98DXDf
-VHHAp+VZ6Hsae6Avkqjo/hSHSULQ5GjJhn10pk3Dtd0w1p7R2Vq6xd+XcUyx87hl
-IcaxIVDLSw/405gFB3tltZ77LhwVb3PZoePUccFPhCN5+kVbGMV+MnEUrOajXd2X
-c2fgvN1johFB3Whc+w+16aKJ8w/90CUBH96zTPywNC1VsuFLchbc5Et0BhHb55GF
-kMmR4+xdFc/KcGk8p2PBLnj5z0ZKvf37Jp6fUZwBR2vJ8VaMTY+ZCoIwTVznyqAh
-fHogl04g2/A9YwkV59Fjdw5usJ0Df9rNsDP5gulDxnVHpGdhRQMtd3mM+9txu/Jd
-3ymwafejwqJdb6I8dtRZZZWnetMvpeznwLjvsTEO6Cns9YobvPOGtsTl+pqRQ4Kg
-+PJaoWWfwjE1uC2s3g4f
-=0FYW
+iQIcBAABAgAGBQJSgUKEAAoJEKQfE8mZlFKT6LkP/1Xe3ZUtjNMEhAPPTnrUh88g
+xEmWXyttmH8oQUyrqD7kTZLQk5qAfRu3dcG3D2mppLBwfS/nIvgwGFyyEcM3cah/
+ZlYKgV+8q2IJnWEjW3LsI+gR6cv3ty0eR3nYQ56eRntqsVYr/4DxDKAcmgsC2hCn
+IY0xwzJS3ecD6RxGDHErSyv1Tfk644fle+Dh7EdRLyiwa7POdkRmfzJwuKl+NMOZ
+//r0VUoy2L+v31VCB6aUvhVU6HonKQBhM1C890MOlHiyxSlX9o7XPpG/cDQuvdHF
++4hsNp7kNa1GFV7RlhzBkaSo0SmLRD4+N8ECzRYdKNON77TnFpR0eFgclm7joXZx
+erwoX+KJztU8Ff25sTYrToMzksZAvBtuH6Ee1I85bGoJkQXTb/A0OfymdbWgNgGX
+MYBrKhXHuNQUpl9DcT3Qo/btQHzFSwTc0Fu0ZCENbaYQQ1zVFkcz5mdXf3y6HxCy
+cbX7liOi1y7KRJwg1Ewwnr+Nc0mV/+6Q2CLHoepXC1lPFalYxMr9ztY7jf3tmjiu
+ijcJtrQ9suPDN/4Mx3q+xwKVhdbjySfiUXoI6Z/ZyYwpTQC2mGQpdmFLJ8aRPuPs
+j/xsUutWaXC6eZ0RSBXQNGzPBzh+uPtTJM6YOL/E8puBlmB54qNKf5QiA+MWNvmc
+mbiquazZJF0S/h5sqX+i
+=KAwd
 -----END PGP SIGNATURE-----

Modified: dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.md5
==============================================================================
--- dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.md5 (original)
+++ dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.md5 Mon Nov 11 21:01:49 2013
@@ -1 +1 @@
-0d14667df7efc1f95c1164f18cb81114
\ No newline at end of file
+d0344212b8194c373dc422c3171c1b7a
\ No newline at end of file

Modified: dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.sha1
==============================================================================
--- dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.sha1 (original)
+++ dev/commons/collections/binaries/commons-collections4-4.0-bin.tar.gz.sha1 Mon Nov 11 21:01:49 2013
@@ -1 +1 @@
-1086fbbcc7aa5add26bafc417cc766701880e0a3
\ No newline at end of file
+e5981cc31c6f1497b18e63bdeca5c5a5bf7d2bba
\ No newline at end of file

Modified: dev/commons/collections/binaries/commons-collections4-4.0-bin.zip
==============================================================================
Binary files - no diff available.

Modified: dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.asc
==============================================================================
--- dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.asc (original)
+++ dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.asc Mon Nov 11 21:01:49 2013
@@ -1,17 +1,17 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.11 (GNU/Linux)
 
-iQIcBAABAgAGBQJSfK7zAAoJEKQfE8mZlFKT0xIP/0Oh027L98AJpm9U0g71ePI+
-dQsTj1UuE4H+WUGhQp7CtfAp7MLGBOwdl1SfdMI4raakCcqNs+/7fRL0BMD98LLM
-wuH0I3DHBJpU+NZfvnVVJpHW655Eg8G/JVQL7IKyJTj2Ph7kUgrqcm8rzW+xuaph
-gZK8Eucj7Q7Xerri0HgCPftubtb9nYWMJUCB9cLAZ13+TO/kPVPF/35Pt6EtFSmn
-dx/ia2FWE+vG3YNDIx81kHH+HL/l9awkZWELPBsnyyfF8Hxbam9TUxXS0goO/bjU
-a+wJtUTB2u86VRKHzP7YVPiawcwx3kP3Bj+WGy2M+Dt1m7jnTrA14H0svLk7q8Im
-w547HS6a0RcA7+15zR3jWbHsM11ihH/RrWcm7Wty55JLKy8m7Mf2GrH1BQWGyzh7
-gdh7mZ0Y0dAfjl1BwMtOFmz+nU0dSqXw/QSBfmX0YlDdpyzsbk9IuJwwltuv07r2
-r1dXDbrfJqj5AfXd/0NUYjgQb/xT6H8l4wsswWxYL50HzkSSU7UxmK4HRpBnTW0M
-WK1hHUaoxlJxSSA1R6liVdY8Ye/LY0FpWVQFlQosXUR/ibXL6ccst6MhF2y7lBZ9
-YNU2NhTzhYk8kITwTsP6xEd/qtXNLhDOS3gx2/g6211OQpf6JEv0G2PvC47YdXCf
-sKbbxfQHzkhOG3aDjO3M
-=NsYT
+iQIcBAABAgAGBQJSgUKEAAoJEKQfE8mZlFKTngEP/3pwtDbnrr/WqZL6OxRcJqeJ
++DCw+7AM5fgGxW8jvn0JPDu84Yt3R3FehE3e4EH00F0xxVyoWqG70479Zjl+Woy+
+Ln8g0UOis6b+7BgsH+YlLlIxeGgjoS1qm8V/FCGBqXafpRq4jWJscm8rnqmWKF0S
+Dv6Sc1FZzKC71N5tYgDfiW/lDPG6sA4HqkWECZv+VcRJhSTm1JuqmhbkiH2wH/w1
+EaNuR9GFDf7i+5Y11PghE8IXUjWra6TkQJGtipwi3NzgXE+znTEkEt+4DQbcrdTg
+ndDzNcM2qyFqDmT1gxa9CSTmchAW39IiUB4S+yAefFg0B+1dB+G/ZkojzLninZ8j
+q/CiMqEqwbGcwgDk8hwEQV5bhHH/1tjkl6N1Sm226SaGFaRCgPpLijrzHjA8Cmid
+vWsCMEmdvgTkqio0tBP6yTkVDJ8lIT14whVaIp8dm/lKO5UMnr6t379m8Xzvrtuv
+VF8r5Z1cTOMjcQ7YyjuWOWf2FLqbCGBvbJAofhOdoHNe5JMYHbd06FXFPUZkZ191
+iRaHjRpH9DCLcPhnZP4zoIkXx5dCFl99bFQ7kTohZIn2JEf9f0r3vF5U8etx5ncP
+JAYjBjJJ+rrx0yExv/4q6Zq/IoE8ykJCIDEQA/84W43nndzy2sYCqeUcRCNMgR3q
+soMux2kbmPrZV9m4YFJg
+=k7QQ
 -----END PGP SIGNATURE-----

Modified: dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.md5
==============================================================================
--- dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.md5 (original)
+++ dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.md5 Mon Nov 11 21:01:49 2013
@@ -1 +1 @@
-10b550c49ce3ccd2747be552b4743df0
\ No newline at end of file
+d53329ef2243eaaa2bc582dfbfb400de
\ No newline at end of file

Modified: dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.sha1
==============================================================================
--- dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.sha1 (original)
+++ dev/commons/collections/binaries/commons-collections4-4.0-bin.zip.sha1 Mon Nov 11 21:01:49 2013
@@ -1 +1 @@
-b05f6c77ab87fb5c61f909f8342843cfcef4c2b9
\ No newline at end of file
+611fa61b7a3748a638b6e02f5e88eab80a91f803
\ No newline at end of file

Modified: dev/commons/collections/source/commons-collections4-4.0-src.tar.gz
==============================================================================
Binary files - no diff available.

Modified: dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.asc
==============================================================================
--- dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.asc (original)
+++ dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.asc Mon Nov 11 21:01:49 2013
@@ -1,17 +1,17 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.11 (GNU/Linux)
 
-iQIcBAABAgAGBQJSfK7zAAoJEKQfE8mZlFKTUwAQAIW56+cSO32WXUwq74qGViFW
-w7qU+h6/qzKtyF/SEkmxCgjLY4DbgMgi9ovCMY4kVmGW8TCOgnnRCmq2w1eFSV9v
-S+ImeBWLEpzEzgHH+HA0PoGz5CVg0phocogE1GFMmlycJU+fabvrY5sclUp/TlPK
-ljQnpTDMhYU6x59Puo8X61xYX0qzXTRoOB0nohKJoQIlvQfc4I6xz+O7y3dodb8O
-DMclznURjfAyCZCIhUm9Y6xDHd1uZ15qFi13rRD8PPi6Pw5agz6bh1DK4aCFLhi5
-5Y1Xhb3zyOAzUoZMVAGMGnUoRNk79h2mtcLkBcVhx/XkF+AGBAreVJG3qPT8jS9z
-ORZvDjrn3CJ3D7KD7TonYnl6GUPKxbCn2LTInVRhOcRJKXKok1VHY5b/tbAhh6Pt
-2JWryb4gimt0czfyS4hTYi9n6lWvf2q6HgTc7YequPbqcKV0Ub4ma2PK9XH6Cyqo
-rnqzIh00cJqKONH6m/FXQ+sH3tAbO0wgok3NRXg0ouJg7THQZOqtxQfT2FAkknjI
-GAxngZXTH38HY/5oZ8ZE98CK60fpiNFyDGrTL0lRDcAL8W8OfK2/ddr/Tbk9ORZi
-EOzg+w5mA0MDvv0ZCl8BBHnk505Lr0EllAIFUPCyBNimJHU1fbJV00jLwD0w2Iu6
-8ZFgcN6qSqqs8zV/5Hxs
-=BGOR
+iQIcBAABAgAGBQJSgUKFAAoJEKQfE8mZlFKTwpcQAKYtKs1N39xgZyQdnG4G66A3
+Jt582kpSX4ENLwz+gFiCl0DnNhTlA2jdHG68xrU3R/KtwfIHAfH2WUgtjeOgUhst
+Zjs+gSwAo/YCgKZXmeu+a0SwV5Ivk0M1owz9QHEkH1DIV+KvfqWIPcvbOLv8Aeem
+6FA7H3VMI7qRE1JPnfTzVOPYuNck0GRU164q8/yA9lvMalZ/Ua3OHEMf7WUB3pMp
+fRMtEtKJ/s21OcGhTx8kpVY687By1q/SE3JgW7T8Bvh5FfgfC9GCOuMYemaL2/iV
+JSz5wR/Ml9MUwqP8+d7lSL4LYfr2KrdAL4txpB6qDUm5eIH+FgqtF81PBjmsT9qN
+xGTunSp5nVZ0vBXeXRo245QFVVRpmLk/yX8QKiGZG66tFvnSUYnxEH9x6MtUcL5K
+mMPkhxSTi4UENpZLYOsF+g/Urt8L8E305nrpCcThdjK+aaFJXSWdg+dr4al7V5rE
+OqpYPjO6uqgjmHiTZqrUp3t0RmhjPN0oMFASAl09F9LgSqI7/+adbnHP6Csp4WEA
+8bBHWTBc2djvBeKImjXVJBYynn8wihdZmVEIAeVCWSeMmanYoDjCqj6UP7q4GVzd
+DIbAyZPc8YQ2noOve0hoCP6EVlxX4PGi7xzNHmRQJX5p3fCWKh1Re3bhdU/gkxOG
+xtyPVHJD9QAs7UAWPGtC
+=PcHA
 -----END PGP SIGNATURE-----

Modified: dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.md5
==============================================================================
--- dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.md5 (original)
+++ dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.md5 Mon Nov 11 21:01:49 2013
@@ -1 +1 @@
-bc88598c296899eaffd318922a0b9e59
\ No newline at end of file
+81f988d6f0d822c49ce4a3e776a3cc37
\ No newline at end of file

Modified: dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.sha1
==============================================================================
--- dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.sha1 (original)
+++ dev/commons/collections/source/commons-collections4-4.0-src.tar.gz.sha1 Mon Nov 11 21:01:49 2013
@@ -1 +1 @@
-70f8bd6872d5283e88b7cc6d570e4ee696d0fa06
\ No newline at end of file
+9abf99f414460baaead24d645d6ec0a26826db0d
\ No newline at end of file

Modified: dev/commons/collections/source/commons-collections4-4.0-src.zip
==============================================================================
Binary files - no diff available.

Modified: dev/commons/collections/source/commons-collections4-4.0-src.zip.asc
==============================================================================
--- dev/commons/collections/source/commons-collections4-4.0-src.zip.asc (original)
+++ dev/commons/collections/source/commons-collections4-4.0-src.zip.asc Mon Nov 11 21:01:49 2013
@@ -1,17 +1,17 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.11 (GNU/Linux)
 
-iQIcBAABAgAGBQJSfK70AAoJEKQfE8mZlFKTxr4P/3dXE67huBNCuHRHkoZR11y6
-8oUkinI7E7oncPRurutVem+GF7KAtVABK1VaTRuOi1vAy4Yx9xPdzbT0tskHoE08
-mFPpbAk+MAC690xUnGB55YKqP/XSGXSWgovWpPWN51laCe/e9Dwk0uNQHdg8A9V4
-avbApF8DA76lvDUAhC4qFaoOM1pRhBshKuZKgTREX3RDHRDXbmUNXWLy8b6jTxhZ
-RkVmj7KtB8QZydPZE13aPRZ6DNjHyRoWwpoDDcvkHcubIYZFBYQbNSV8r4dy4KL2
-uToCuXizpU5AWbhU2JQGjAGCVmExEMeU2UuRnFgTPveDHs+LMpeaXikKu/eo6qvB
-7rt6iZlcFwi7A71qH+V2v43K5W5DalMaLVSPpSTA+tuK7lh0FdbcRqUjsirST+v6
-viI61oH29xCqcX5ZG/QM//YdistTNba5NEtAnldusjfBfBg3dVeGkNHBAO187JAJ
-vmpxBMwNemqpghNIMzLlHZfRx0C9FjgeB0ODbqgiVb0omrNaFGMFSK8q4G3iDJRG
-Xw2iKDEKXiMMIHwRiF87Yb28RB5B6Z7TghQZoE3RHbUcTsR7RB/XDK5pLfsuI5IK
-66Nc8eYqDC3gxGr2A17feyOs4q6VtWGfZEFm3oc4GpEW/wTh3V+IgxizgcMKdR1t
-tYRXvUfynJjIsbrDJSBZ
-=FzrG
+iQIcBAABAgAGBQJSgUKFAAoJEKQfE8mZlFKTT7wP/1oGaqSRJ56i9z3t+rADt82t
+AWn9IyEBpcsR5ZNnMIQ9tg/NHxDycO4uTb0gcHTM9ff73HNH1N8X5Jf1xfiY2BGW
+nN6gm1ce/bT/ISk8r+BV4RacUQ1Mw/jVi9GU53iosW3TJJogYuyNXWEEBvWt9gRn
+XCYL4mFcqY2E5MNpWVDRvBSYz4/3Y2NgUnePfh0OhurU36JPX8PRfbOwPCHLT0OM
+Vnn6pS2UF4DNxbRI4150Jcti/H6OZ9kvoKYHUNdwzoEHNhWSk2jYufb40AEGXa0R
+p+fx9WcIBbZxUqbRNQNXtaSThWJOtD6ELqK8ciMGfZavzRor/HmtNCesGv048d9q
+2XH5Crfe0YIBIQi0+ZleW5gn8LnABICbwqTtlgxQ/czAa2Q5Ypmwf0Jp2/gmCKnN
+gTw6wxMV2RozC3HI4UkBhfAeoUemCVpvuL96mApn2qKB2kqWY0WpGzQ9DPz0yQEE
+jNNAC8XwyS5YZRYAJrC7ON1wwXHIDG9V7pyN+stx4KYvv83nFC9pJALCQ5e+pZoO
+aIJzMUNPlYfqBO2whZcqBCfD2bfvJUpqXiV7XXzJqHgt4NZ6IgvKgqyJXn36m6RP
+woaQT2120O/3yt4caY7cv2zmeKac/ceqNaGvm3tc8fIvBXXxF/+owMJZrhS+8cnJ
+WFAEd72ajFylRJTtkl3R
+=bHl7
 -----END PGP SIGNATURE-----

Modified: dev/commons/collections/source/commons-collections4-4.0-src.zip.md5
==============================================================================
--- dev/commons/collections/source/commons-collections4-4.0-src.zip.md5 (original)
+++ dev/commons/collections/source/commons-collections4-4.0-src.zip.md5 Mon Nov 11 21:01:49 2013
@@ -1 +1 @@
-d6741cab37d16573f13b341fe9ea8f3c
\ No newline at end of file
+25e640c6d5dfac9e88320c34c7cd77be
\ No newline at end of file

Modified: dev/commons/collections/source/commons-collections4-4.0-src.zip.sha1
==============================================================================
--- dev/commons/collections/source/commons-collections4-4.0-src.zip.sha1 (original)
+++ dev/commons/collections/source/commons-collections4-4.0-src.zip.sha1 Mon Nov 11 21:01:49 2013
@@ -1 +1 @@
-7f8340cbeabcbb9d611bb6d546cc69fa0ebd3521
\ No newline at end of file
+b22c651ba5b159dafe2537bff0dd87f7f484ba54
\ No newline at end of file