Skip to content

Commit

Permalink
Bump version --> 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Jul 3, 2024
1 parent 1cac24c commit 32e1ab5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>software.coley</groupId>
<artifactId>extra-collections</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>

<name>Extra Collections</name>
<description>Extra useful collection types and utilities</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/software/coley/collections/Maps.java
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public static <K, V> Map<K, V> of(K key, V value) {
@Nonnull
public static <K, V> Map<V, K> reverse(@Nullable Map<K, V> map) {
if (map == null) return Collections.emptyMap();

Map<V, K> result = new HashMap<>();
map.forEach((k, v) -> result.put(v, k));
return result;
Expand Down

0 comments on commit 32e1ab5

Please sign in to comment.