Skip to content

Changes

Summary

  1. Update version number to 9.1.0-SNAPSHOT. (details)
  2. Updated readme.MD to point to 9.0.0. (details)
  3. Implement countBy on Collectors2. (details)
  4. Implement factory class for Strings. (details)
  5. Implement multiReader list factory (details)
  6. Add withInitialCapacity to Lists.mutable. (details)
  7. Enable unused import checkstyle configuration and fix offenders. (details)
  8. Implement withInitialCapacity on MultiReader. (details)
  9. Implement zip on primitive lists. Closes #308. (details)
  10. Change zip and zipInt to take Iterable instead of ListIterable and (details)
  11. Implement removeIf for mutable primitive collections. (details)
  12. Add eclipse.org/collections index files. (details)
  13. Implement trimToSize on UnifiedMapWithHashingStrategy. Closes #370. (details)
  14. Implement groupByEach Collector on Collectors2. Resolves #362 (details)
  15. Add an additional build process to provide a feature #288 (details)
  16. Implement collectWithIndex on ListIterate and RandomAccessListIterate. (details)
  17. Implement MutableMapIterable.putPair(Pair<K, V> keyValue). Fixes #391. (details)
  18. Implement MutableObjectPrimitiveMap.putPair(ObjectPrimitivePair<K>). (details)
  19. Implement MutablePrimitivePrimitiveMap.putPair(PrimitivePrimitivePair). (details)
  20. Implement MutablePrimitiveObjectMap.putPair(PrimitiveObjectPair<V>). (details)
  21. Make tests in UnmodifiableTreeMapTest consistent. (details)
  22. Implement groupByUniqueKey Collector on Collectors2. Resolves #363 (details)
  23. Remove unnecessary probe() call. (details)
  24. Add Russian translation for Eclipse Collections website. (details)
  25. Fixed typos and style for the Russian website (details)
  26. Fix Java 8 Collectors#joining(String, String, String) usage (details)
  27. Implement trimToSize() on UnifiedSetWithHashingStrategy. Fixes #369 (details)
  28. Add translation portugues - pt-br. (details)
  29. Implement collectWithIndex on OrderedIterable. Closes #395. (details)
  30. Implement collectWithOccurrences on Bags. (details)
  31. Fix spelling of occurrences. (details)
  32. Add Javadoc to Pair, Twin, Tuples, PrimitiveTuples, ObjectPrimitivePair, (details)
  33. Fix few typos. (details)
  34. Implement collectWithIndex on primitive ordered iterables. (details)
  35. Upgrade Maven Enforcer, Javadoc plugin to 3.0.0-M1. (details)
  36. Enable Java 9 unit test build. (details)
  37. Release version 9.1.0.M1. (details)
Commit 59b9191fd55d9d1c4e947c8e17794ff852b36235 by hudson
Update version number to 9.1.0-SNAPSHOT.
The file was modified eclipse-collections-api/pom.xml (diff)
The file was modified eclipse-collections-code-generator-maven-plugin/pom.xml (diff)
The file was modified test-coverage/pom.xml (diff)
The file was modified scala-unit-tests/pom.xml (diff)
The file was modified performance-tests/pom.xml (diff)
The file was modified serialization-tests/pom.xml (diff)
The file was modified junit-trait-runner/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified unit-tests/pom.xml (diff)
The file was modified eclipse-collections-code-generator/pom.xml (diff)
The file was modified p2-repository/pom.xml (diff)
The file was modified eclipse-collections-code-generator-ant/pom.xml (diff)
The file was modified eclipse-collections-forkjoin/pom.xml (diff)
The file was modified p2-repository/org.eclipse.collections/pom.xml (diff)
The file was modified eclipse-collections-testutils/pom.xml (diff)
The file was modified jmh-tests/pom.xml (diff)
The file was modified eclipse-collections/pom.xml (diff)
The file was modified acceptance-tests/pom.xml (diff)
The file was modified jmh-scala-tests/pom.xml (diff)
The file was modified unit-tests-java8/pom.xml (diff)
Commit cd00884f22b72ac4cd96e52657fa54b814a057e3 by Donald Raab
Updated readme.MD to point to 9.0.0.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified README.md (diff)
Commit d593a1b0d978a41c085bc41bcd539d25bb8f77cf by Donald Raab
Implement countBy on Collectors2.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/Collectors2Test.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/collector/Collectors2.java (diff)
Commit f622eec14c5c91aec92a79dab44ce8677decd2b0 by Donald Raab
Implement factory class for Strings.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was addedeclipse-collections/src/main/java/org/eclipse/collections/impl/factory/Strings.java
The file was addedunit-tests/src/test/java/org/eclipse/collections/impl/factory/StringsTest.java
Commit 10eb652dcfb70a8aff8e700b2ccceacdcd841daf by Jackie Haynes
Implement multiReader list factory

Signed-off-by: Jackie Haynes <jackie.haynes@gs.com>
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/factory/Lists.java (diff)
The file was modified RELEASE_NOTE_DRAFT.md (diff)
The file was addedeclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/MultiReaderMutableListFactory.java
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/factory/ListsTest.java (diff)
Commit d61e62a88ce15f080d38a99bc24c0c770bb4331f by Bhavana Hindupur
Add withInitialCapacity to Lists.mutable.

Signed-off-by: Bhavana Hindupur <bhavana.hindupur@gmail.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/factory/SetsTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/factory/ListsTest.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/factory/list/MutableListFactory.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/MutableListFactoryImpl.java (diff)
Commit 9781334e41083dbac7563513ae8aa8acaadad8fb by Nikhil Nanivadekar
Enable unused import checkstyle configuration and fix offenders.
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/objectPrimitiveHashMapWithHashingStrategyKeySetTest.stg (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/stack/mutable/ArrayStackTest.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/objectPrimitiveHashMapWithHashingStrategyTest.stg (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/lazy/primitive/FlatCollectBooleanToObjectIterableTest.java (diff)
The file was modified eclipse-collections-code-generator/src/main/java/org/eclipse/collections/codegenerator/model/Primitive.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/list/mutable/primitiveArrayListTest.stg (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/factory/primitive/BooleanSetsTest.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/synchronizedPrimitivePrimitiveMapValuesTest.stg (diff)
The file was modified checkstyle-configuration.xml (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/fixed/ArrayAdapter.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/objectPrimitiveHashMapTest.stg (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/utility/ListIterate.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/immutable/ImmutableEmptyListTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/SerializableLongSummaryStatisticsTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collection/immutable/AbstractImmutableCollectionTestCase.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/lazy/primitiveTapIterableTest.stg (diff)
The file was modified unit-tests-java8/src/test/java/org/eclipse/collections/test/lazy/SelectInstancesOfIterableTestNoIteratorTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/SerializableDoubleSummaryStatisticsTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/block/CheckedBlocksTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/SummaryStatisticsTest.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/set/sorted/ImmutableSortedSet.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/objectPrimitiveHashMapWithHashingStrategyValuesTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/unmodifiablePrimitivePrimitiveMapValuesTest.stg (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/collector/BigDecimalSummaryStatistics.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/primitivePrimitiveHashMapValuesTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/objectPrimitiveHashMapKeySetTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/objectPrimitiveHashMapValuesTest.stg (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/SerializableIntSummaryStatisticsTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/SynchronizedRichIterable.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/collector/BigIntegerSummaryStatistics.java (diff)
Commit ad78a05ab46d902b2ad08330067b5ff99013192d by Bhavana Hindupur
Implement withInitialCapacity on MultiReader.

Signed-off-by: Bhavana Hindupur <bhavana.hindupur@gmail.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/factory/ListsTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/MultiReaderMutableListFactory.java (diff)
Commit e68c700fa75d0b61ff7f4086f915337ac3eaae58 by Donald Raab
Implement zip on primitive lists. Closes #308.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/mutable/synchronizedPrimitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/mutable/unmodifiablePrimitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/list/immutable/abstractImmutablePrimitiveListTestCase.stg (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/string/immutable/CharAdapter.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/list/mutablePrimitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/immutable/immutablePrimitiveArrayList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/mutable/primitiveArrayList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/immutable/immutablePrimitiveEmptyList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/immutable/immutablePrimitiveSingletonList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/list/primitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/list/immutablePrimitiveList.stg (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/string/immutable/CodePointAdapter.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/list/mutable/abstractPrimitiveListTestCase.stg (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/string/immutable/CodePointList.java (diff)
Commit a55518b193b06fefd3ec1c0cc3e9e26804180dfb by Donald Raab
Change zip and zipInt to take Iterable instead of ListIterable and implement zip and zipInt on IntInterval.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/primitive/IntInterval.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/mutable/primitiveArrayList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/list/immutable/abstractImmutablePrimitiveListTestCase.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/list/mutablePrimitiveList.stg (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/string/immutable/CharAdapter.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/string/immutable/CodePointList.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/primitive/IntIntervalTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/string/immutable/CodePointAdapter.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/list/mutable/abstractPrimitiveListTestCase.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/immutable/immutablePrimitiveArrayList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/immutable/immutablePrimitiveEmptyList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/list/immutablePrimitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/list/primitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/immutable/immutablePrimitiveSingletonList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/mutable/synchronizedPrimitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/mutable/unmodifiablePrimitiveList.stg (diff)
Commit bcce9ea79f73fdaad91b77791d386c7ac3a1631c by Donald Raab
Implement removeIf for mutable primitive collections.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified eclipse-collections-code-generator/src/main/resources/impl/collection/mutable/abstractSynchronizedPrimitiveCollection.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/unmodifiablePrimitiveObjectMapKeySetTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/set/mutable/unmodifiablePrimitiveSetTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/collection/mutable/abstractMutablePrimitiveCollectionTestCase.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/list/mutable/unmodifiablePrimitiveListTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/unmodifiablePrimitivePrimitiveMapKeySetTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/collection/mutablePrimitiveCollection.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/synchronizedObjectPrimitiveMapValuesTest.stg (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/primitive/BooleanArrayList.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/collection/mutable/abstractUnmodifiablePrimitiveCollection.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/objectPrimitiveHashMapValuesTestCase.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/mutable/primitiveArrayList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/synchronizedPrimitivePrimitiveMapValuesTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/unmodifiablePrimitiveBooleanMapKeySetTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/primitivePrimitiveHashMapValuesTest.stg (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/mutable/primitive/AbstractBooleanListTestCase.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/unmodifiablePrimitivePrimitiveMapValuesTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/bag/mutable/primitiveHashBag.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/unmodifiableObjectPrimitiveMapValuesTest.stg (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/mutable/primitive/UnmodifiableBooleanListTest.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/bag/mutable/unmodifiablePrimitiveBagTest.stg (diff)
Commit c0e760e8dbfb010ee17ab1ca0e0a48fc1e355aa4 by Nikhil Nanivadekar
Add eclipse.org/collections index files.
The file was addedsite/index.html
The file was addedsite/ja/index.html
Commit d9358d361aec8b6853f23ecf118ab410da931912 by Patrick Ekel
Implement trimToSize on UnifiedMapWithHashingStrategy. Closes #370.

Signed-off-by: Patrick Ekel <patrick.ekel@utah.edu>
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/map/strategy/mutable/UnifiedMapWithHashingStrategy.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/map/strategy/mutable/UnifiedMapWithHashingStrategyTest.java (diff)
Commit bd5338e91941cb6b783c658cad867fcac86f323e by Dineshkumar Gnanaprakasam
Implement groupByEach Collector on Collectors2. Resolves #362

Signed-off-by: TheLoneKing <dkumar.kovai@gmail.com>
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/collector/Collectors2.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/Collectors2Test.java (diff)
Commit adfc81f3ea4a5e8e9c6b32d3e9aeeb497cdf1a90 by ujhelyiz
Add an additional build process to provide a feature #288

Signed-off-by: Zoltan Ujhelyi <ujhelyiz@incquerylabs.com>
The file was addedp2-feature/org.eclipse.collections.repository/.project
The file was addedp2-feature/org.eclipse.collections.feature/pom.xml
The file was addedp2-feature/org.eclipse.collections.feature/feature.xml
The file was addedp2-feature/pom.xml
The file was addedp2-feature/.settings/org.eclipse.core.resources.prefs
The file was addedp2-feature/org.eclipse.collections.feature/feature.properties
The file was addedp2-feature/org.eclipse.collections.repository/category.xml
The file was addedp2-feature/.project
The file was addedp2-feature/org.eclipse.collections.feature/license.html
The file was addedp2-feature/org.eclipse.collections.feature/build.properties
The file was addedp2-feature/org.eclipse.collections.repository/pom.xml
The file was addedp2-feature/org.eclipse.collections.feature/epl-v10.html
The file was addedp2-feature/org.eclipse.collections.feature/.project
Commit f8b813d7964ca0f0c32b6491f41efc3f3cc4adce by Donald Raab
Implement collectWithIndex on ListIterate and RandomAccessListIterate.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/utility/ListIterateTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/utility/ListIterate.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/utility/internal/RandomAccessListIterateTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/utility/internal/RandomAccessListIterate.java (diff)
Commit 90a942c87fbd7ac1a17b8ef3342f00b8a69b1015 by Nikhil Nanivadekar
Implement MutableMapIterable.putPair(Pair<K, V> keyValue). Fixes #391.

Signed-off-by: Nikhil Nanivadekar <nikhil.nanivadekar@gs.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/map/mutable/MutableMapIterableTestCase.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bimap/mutable/UnmodifiableBiMapTest.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/map/MutableMapIterable.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/map/AbstractSynchronizedMapIterable.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/map/mutable/UnmodifiableMutableMap.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/map/mutable/UnmodifiableMutableMapTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bimap/mutable/UnmodifiableBiMap.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/map/sorted/mutable/UnmodifiableTreeMap.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/map/sorted/mutable/UnmodifiableTreeMapTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap.java (diff)
Commit e3f932622ada654b772b29bace185667c5ccc9e8 by Nikhil Nanivadekar
Implement MutableObjectPrimitiveMap.putPair(ObjectPrimitivePair<K>). Fixes #392.

Signed-off-by: Nikhil Nanivadekar <nikhil.nanivadekar@gs.com>
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/unmodifiableObjectPrimitiveMapTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/map/mutable/unmodifiableObjectPrimitiveMap.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/map/mutable/synchronizedObjectPrimitiveMap.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/abstractMutableObjectPrimitiveMapTestCase.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/map/mutableObjectPrimitiveMap.stg (diff)
Commit 0dc0b0d63ac7a48da524e84abf38b4e3da336de7 by Nikhil Nanivadekar
Implement MutablePrimitivePrimitiveMap.putPair(PrimitivePrimitivePair). Fixes #393.

Signed-off-by: Nikhil Nanivadekar <nikhil.nanivadekar@gs.com>
The file was modified eclipse-collections-code-generator/src/main/resources/impl/map/mutable/synchronizedPrimitivePrimitiveMap.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/map/mutablePrimitivePrimitiveMap.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/abstractMutablePrimitivePrimitiveMapTestCase.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/map/mutable/unmodifiablePrimitivePrimitiveMap.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/unmodifiablePrimitivePrimitiveMapTest.stg (diff)
Commit 217abf774bd79369b25e91224c89433bd58ba62a by Nikhil Nanivadekar
Implement MutablePrimitiveObjectMap.putPair(PrimitiveObjectPair<V>). Fixes #394.

Signed-off-by: Nikhil Nanivadekar <nikhil.nanivadekar@gs.com>
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/unmodifiablePrimitiveObjectMapTest.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/map/mutable/synchronizedPrimitiveObjectMap.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/map/mutable/abstractMutablePrimitiveObjectMapTestCase.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/map/mutablePrimitiveObjectMap.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/map/mutable/unmodifiablePrimitiveObjectMap.stg (diff)
Commit 24cc5219a7544ae0835ab30a74cc2a37c77cc449 by Nikhil Nanivadekar
Make tests in UnmodifiableTreeMapTest consistent.
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/map/sorted/mutable/UnmodifiableTreeMapTest.java (diff)
Commit eabf7ceed2a2e30e064680a80089bfc666f0bf33 by Dineshkumar Gnanaprakasam
Implement groupByUniqueKey Collector on Collectors2. Resolves #363

Signed-off-by: TheLoneKing <dkumar.kovai@gmail.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/collector/Collectors2Test.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/collector/Collectors2.java (diff)
Commit 121159515fbd429baefd80bb3c9fd1277cf9775f by Nikhil Nanivadekar
Remove unnecessary probe() call.
The file was modified eclipse-collections-code-generator/src/main/resources/impl/map/mutable/primitiveObjectHashMap.stg (diff)
Commit 20e0782ffa4b308b067488dd56bf3f292ba64c6c by Vladimir Zakharov
Add Russian translation for Eclipse Collections website.

Signed-off-by: Vladimir Zakharov <vladimir.zakharov@gs.com>
The file was modified site/ja/index.html (diff)
The file was modified site/index.html (diff)
The file was addedsite/ru/index.html
Commit ec17822172474f6104bfce5083b8ac264009c920 by Vladimir Zakharov
Fixed typos and style for the Russian website

Signed-off-by: Vladimir Zakharov <vladimir.zakharov@gs.com>
The file was modified site/ru/index.html (diff)
Commit 0406bb3b8d42768106a23a2f1bd5598c56cb7893 by Valeriy Vyrva
Fix Java 8 Collectors#joining(String, String, String) usage

Signed-off-by: Valeriy.Vyrva <valery1707@gmail.com>
The file was modified docs/guide.md (diff)
Commit 6543efcb49c91c8264a766f911dabe5512ee4dc2 by Vladimir Zakharov
Implement trimToSize() on UnifiedSetWithHashingStrategy. Fixes #369

Signed-off-by: Vladimir Zakharov <vladimir.zakharov@gs.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/set/mutable/UnifiedSetWithHashingStrategyTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/set/strategy/mutable/UnifiedSetWithHashingStrategy.java (diff)
Commit ec306bdb3049e06ae4156eaeb98a6648546826eb by Daniel Dias
Add translation portugues - pt-br.

Signed-off-by: daniel-dos <daniel.dias.analistati@gmail.com>
The file was modified site/ja/index.html (diff)
The file was modified site/ru/index.html (diff)
The file was addedsite/pt-br/index.html
The file was modified site/index.html (diff)
Commit 3e300196c7c3cbea048fb88c74e2abc45a4ba68c by Donald Raab
Implement collectWithIndex on OrderedIterable. Closes #395.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/sorted/mutable/AbstractMutableSortedBagTestCase.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/set/sorted/immutable/ImmutableEmptySortedSetTest.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/ordered/SortedIterable.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/ordered/ReversibleIterable.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/sorted/immutable/ImmutableSortedBagImpl.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/stack/mutable/ArrayStack.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/list/ImmutableList.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/set/sorted/MutableSortedSet.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/map/sorted/immutable/ImmutableSortedMapTestCase.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/stack/mutable/ArrayStackTest.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/set/sorted/SortedSetIterable.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/set/sorted/immutable/AbstractImmutableSortedSetTestCase.java (diff)
The file was modified unit-tests-java8/src/test/java/org/eclipse/collections/test/SortedNaturalOrderTestCase.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/bag/sorted/ImmutableSortedBag.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/map/sorted/mutable/UnmodifiableTreeMap.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/stack/immutable/ImmutableArrayStack.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/set/sorted/mutable/AbstractSortedSetTestCase.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/list/MutableList.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/utility/internal/InternalArrayIterate.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/map/sorted/mutable/SynchronizedSortedMap.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/set/sorted/immutable/ImmutableEmptySortedSet.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/mutable/AbstractListTestCase.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/map/sorted/mutable/MutableSortedMapTestCase.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/list/ListIterable.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/stack/StackIterableTestCase.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/sorted/immutable/ImmutableEmptySortedBag.java (diff)
The file was modified unit-tests-java8/src/test/java/org/eclipse/collections/test/OrderedIterableTestCase.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/immutable/ImmutableArrayList.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/sorted/immutable/AbstractImmutableSortedBagTestCase.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/FastList.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/bag/sorted/MutableSortedBag.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/set/sorted/immutable/ImmutableTreeSet.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/bag/sorted/SortedBag.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/stack/MutableStack.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/immutable/AbstractImmutableListTestCase.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/immutable/ImmutableEmptyListTest.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/ordered/OrderedIterable.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/map/sorted/SortedMapIterable.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/stack/StackIterable.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/set/sorted/ImmutableSortedSet.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/stack/ImmutableStack.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/SynchronizedMutableList.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/map/sorted/immutable/ImmutableEmptySortedMapTest.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/map/sorted/ImmutableSortedMap.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/map/sorted/MutableSortedMap.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/sorted/mutable/UnmodifiableSortedBag.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/set/sorted/mutable/SynchronizedSortedSet.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/stack/mutable/SynchronizedStack.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/set/sorted/mutable/UnmodifiableSortedSet.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/sorted/immutable/ImmutableEmptySortedBagTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/sorted/mutable/SynchronizedSortedBag.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/sorted/mutable/AbstractMutableSortedBag.java (diff)
Commit e6408403d63597b8a7a7614667a94227eecc82fa by Donald Raab
Implement collectWithOccurrences on Bags.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/mutable/UnmodifiableBagTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/mutable/SynchronizedBagTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/mutable/UnmodifiableBag.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/immutable/ImmutableEmptyBag.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/mutable/SynchronizedBag.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/mutable/MutableBagTestCase.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/immutable/ImmutableSingletonBagTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/sorted/mutable/SynchronizedSortedBag.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/immutable/ImmutableEmptyBagTest.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/bag/Bag.java (diff)
The file was modified unit-tests-java8/src/test/java/org/eclipse/collections/test/bag/BagTestCase.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/sorted/mutable/UnmodifiableSortedBag.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/immutable/ImmutableBagTestCase.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag.java (diff)
Commit 952d9e29b6c02ef300f0f99ecefabde8b833b79f by Donald Raab
Fix spelling of occurrences.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/mutable/SynchronizedBagTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/immutable/ImmutableSingletonBagTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/immutable/ImmutableBagTestCase.java (diff)
The file was modified unit-tests-java8/src/test/java/org/eclipse/collections/test/bag/BagTestCase.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/mutable/UnmodifiableBagTest.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/bag/Bag.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/mutable/MutableBagTestCase.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/mutable/SynchronizedBag.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/bag/immutable/ImmutableEmptyBagTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/sorted/mutable/SynchronizedSortedBag.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/immutable/ImmutableEmptyBag.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/sorted/mutable/UnmodifiableSortedBag.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/bag/mutable/UnmodifiableBag.java (diff)
Commit dfd68f28ac3d3b641471c7517c6a0ea6cd31ac52 by Donald Raab
Add Javadoc to Pair, Twin, Tuples, PrimitiveTuples, ObjectPrimitivePair, PrimitivePrimitivePair and PrimitiveObjectPair. Fixes #390.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified eclipse-collections-code-generator/src/main/resources/api/tuple/objectPrimitivePair.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/tuple/primitiveObjectPair.stg (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/tuple/Pair.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/tuple/primitive/PrimitiveTuples.java (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/tuple/primitivePrimitivePair.stg (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/tuple/Twin.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/tuple/Tuples.java (diff)
Commit 06559fa5cb1a6552d0b3e77a290f356dbb7a6463 by Nikhil Nanivadekar
Fix few typos.

Signed-off-by: Nikhil Nanivadekar <nikhil.nanivadekar@gs.com>
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/collection/MutableCollection.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/parallel/ArrayProcedureFJTaskRunner.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/set/sorted/MutableSortedSet.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/LazyIterable.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/CompositeFastList.java (diff)
The file was modified eclipse-collections-testutils/src/main/java/org/eclipse/collections/impl/test/Verify.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/multimap/Multimap.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/stack/mutable/ArrayStack.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/set/MutableSet.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/list/MutableList.java (diff)
The file was modified eclipse-collections-forkjoin/src/main/java/org/eclipse/collections/impl/forkjoin/FJBatchIterableProcedureRunner.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/stack/immutable/ImmutableArrayStack.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/parallel/ParallelMapIterate.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/parallel/ProcedureFJTaskRunner.java (diff)
Commit 9534b003d2516e4ae53b035b30755989ddc4e814 by Donald Raab
Implement collectWithIndex on primitive ordered iterables.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified eclipse-collections-code-generator/src/main/resources/impl/stack/mutable/unmodifiablePrimitiveStack.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/list/mutablePrimitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/stack/immutablePrimitiveStack.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/mutable/unmodifiablePrimitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/stack/mutablePrimitiveStack.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/list/primitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/stack/mutable/synchronizedPrimitiveStack.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/list/immutablePrimitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/ordered/reversiblePrimitiveIterable.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/ordered/orderedPrimitiveIterable.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/api/stack/primitiveStack.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/stack/mutable/abstractPrimitiveStackTestCase.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/impl/list/mutable/synchronizedPrimitiveList.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/list/mutable/abstractPrimitiveListTestCase.stg (diff)
The file was modified eclipse-collections-code-generator/src/main/resources/test/list/immutable/abstractImmutablePrimitiveListTestCase.stg (diff)
Commit 609bcdcd8a7c7d606a9c6d38e607332459bc4437 by Nikhil Nanivadekar
Upgrade Maven Enforcer, Javadoc plugin to 3.0.0-M1.
The file was modified pom.xml (diff)
Commit 17ef1705f9a1edf5a994fa526132279cf4c8d2b9 by Nikhil Nanivadekar
Enable Java 9 unit test build.
The file was removed.travis-command-jdk9.sh
The file was modified .travis.yml (diff)
Commit 87cece9d77e7f21e8a23c3590055b0608298a876 by hudson
Release version 9.1.0.M1.
The file was modified eclipse-collections-forkjoin/pom.xml (diff)
The file was modified eclipse-collections/pom.xml (diff)
The file was modified test-coverage/pom.xml (diff)
The file was modified scala-unit-tests/pom.xml (diff)
The file was modified serialization-tests/pom.xml (diff)
The file was modified unit-tests/pom.xml (diff)
The file was modified p2-repository/pom.xml (diff)
The file was modified performance-tests/pom.xml (diff)
The file was modified junit-trait-runner/pom.xml (diff)
The file was modified acceptance-tests/pom.xml (diff)
The file was modified eclipse-collections-code-generator/pom.xml (diff)
The file was modified eclipse-collections-testutils/pom.xml (diff)
The file was modified p2-repository/org.eclipse.collections/pom.xml (diff)
The file was modified eclipse-collections-code-generator-ant/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified unit-tests-java8/pom.xml (diff)
The file was modified eclipse-collections-api/pom.xml (diff)
The file was modified eclipse-collections-code-generator-maven-plugin/pom.xml (diff)
The file was modified jmh-tests/pom.xml (diff)
The file was modified jmh-scala-tests/pom.xml (diff)