1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Remove use of Thread.stop from test code

This commit is contained in:
Jonah Graham 2024-04-27 06:18:10 -04:00
parent 5d229301ed
commit f0ae450f72

View file

@ -1372,11 +1372,7 @@ public class IndexBugsTests extends BaseTestCase {
th.join(5000);
assertFalse(th.isAlive());
} finally {
try {
th.stop();
} finally {
fIndex.releaseReadLock();
}
fIndex.releaseReadLock();
}
}