We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14f3d5c commit 33f944dCopy full SHA for 33f944d
affinity/src/main/java/net/openhft/affinity/AffinitySupport.java
@@ -45,11 +45,10 @@ public enum AffinitySupport {
45
} else if (osName.contains("x") && isJNAAvailable() && PosixJNAAffinity.LOADED) {
46
LOGGER.fine("Using Posix JNA-based affinity control implementation");
47
AFFINITY_IMPL = PosixJNAAffinity.INSTANCE;
48
- }else if (osName.contains("Mac") && isJNAAvailable()) {
+ } else if (osName.contains("Mac") && isJNAAvailable()) {
49
LOGGER.fine("Using MAC OSX JNA-based thread id implementation");
50
AFFINITY_IMPL = OSXJNAAffinity.INSTANCE;
51
- }
52
- else {
+ } else {
53
LOGGER.info("Using dummy affinity control implementation");
54
AFFINITY_IMPL = NullAffinity.INSTANCE;
55
}
0 commit comments