We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 775cb23 commit cbad2d0Copy full SHA for cbad2d0
test/org/opensolaris/opengrok/index/IndexerRepoTest.java
@@ -69,7 +69,7 @@ private void checkNumberOfThreads() {
69
Thread[] threads = new Thread[mainGroup.activeCount()];
70
mainGroup.enumerate(threads);
71
for (int i = 0; i < threads.length; i++) {
72
- if (threads[i].getName() == null) {
+ if (threads[i] == null || threads[i].getName() == null) {
73
continue;
74
}
75
assertEquals(false, threads[i].getName().contains("renamed-handling"));
0 commit comments