Skip to content

Commit 6c1c5dd

Browse files
committed
prepare for 0.4.3
1 parent 43c480f commit 6c1c5dd

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

gradle.properties

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
group = com.trivago
22

3-
version = 0.4.2
3+
version = 0.4.3
44

55
org.gradle.jvmargs = -ea -Dfile.encoding=UTF-8 -XX:+UseG1GC -Xms512m -Xmx1G -Djava.net.preferIPv4Stack=true
66
systemProp.file.encoding = UTF-8
77

88
systemProp.user.timezone = UTC
99
systemProp.user.language = en
1010

11-
1211
org.gradle.configuration-cache.parallel=true
1312
#org.gradle.parallel = true
1413
org.gradle.daemon.idletimeout = 128000
1514
#org.gradle.logging.stacktrace = full
1615
org.gradle.warning.mode = all
17-
1816
#org.gradle.configureondemand = true

src/main/java/com/trivago/fastutilconcurrentwrapper/util/CFUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static int bucket (@Nullable Object object4hashCode, @Positive int bucket
2525
Get positive, quite `random` bucket index between 0 and bucketSize-1 for any key
2626
Fast. Safe for negative keys (including Long.MIN_VALUE, Integer.MIN_VALUE)
2727
28-
FastUtil has ❌ HashCommon#mix(long), but we use ✅ Long.hashCode + mix(int) because:
28+
FastUtil has ❌ HashCommon#mix(long), but we use ✅ Long.hashCode + mix(int) because with mix(long):
2929
3030
mix(1L) ≠ mix(1) → it is against common knowledge and expectations
3131
mix(1L) ≠ mix(Long.valueOf(1L)) → 😱

0 commit comments

Comments
 (0)