We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a9fa65 commit 3571d19Copy full SHA for 3571d19
src/main/java/com/rabbitmq/stream/impl/HashUtils.java
@@ -18,6 +18,7 @@
18
import java.nio.charset.StandardCharsets;
19
import java.util.function.ToIntFunction;
20
21
+@SuppressFBWarnings({"SF_SWITCH_FALLTHROUGH", "SF_SWITCH_NO_DEFAULT"})
22
final class HashUtils {
23
24
static final ToIntFunction<String> MURMUR3 = new Murmur3();
@@ -72,7 +73,6 @@ private static int fmix32(int hash) {
72
73
this.seed = seed;
74
}
75
- @SuppressFBWarnings({"SF_SWITCH_FALLTHROUGH", "SF_SWITCH_NO_DEFAULT"})
76
@Override
77
public int applyAsInt(String value) {
78
byte[] data = value.getBytes(StandardCharsets.UTF_8);
0 commit comments