We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d16bf60 + cf3383a commit 4c7628dCopy full SHA for 4c7628d
affinity/src/main/java/net/openhft/affinity/AffinityLock.java
@@ -201,12 +201,6 @@ private static boolean isInvalidCpuId(int cpuId) {
201
return false;
202
}
203
204
- private static void checkCpuId(int cpuId) {
205
- if (cpuId < 0 || cpuId >= PROCESSORS) {
206
- LOGGER.warn("cpuId must be between 0 and {}: {}", PROCESSORS - 1, cpuId);
207
- }
208
209
-
210
/**
211
* Assign a cpu which can be bound to the current thread or another thread
212
* Caller passes in an explicit set of preferred CPUs
0 commit comments