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

@ -1371,14 +1371,10 @@ public class IndexBugsTests extends BaseTestCase {
th.start(); th.start();
th.join(5000); th.join(5000);
assertFalse(th.isAlive()); assertFalse(th.isAlive());
} finally {
try {
th.stop();
} finally { } finally {
fIndex.releaseReadLock(); fIndex.releaseReadLock();
} }
} }
}
// void func_209049(long long x); // void func_209049(long long x);
public void testGPPTypes_Bug209049() throws Exception { public void testGPPTypes_Bug209049() throws Exception {