(CoreCount core1, CoreCount core2)
| 134 | } |
| 135 | |
| 136 | protected static CoreCount max(CoreCount core1, CoreCount core2) { |
| 137 | if (core1.totalWithoutCoordinator() < core2.totalWithoutCoordinator()) { |
| 138 | return core2; |
| 139 | } else { |
| 140 | return core1; |
| 141 | } |
| 142 | } |
| 143 | } |
no test coverage detected