mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 01:36:01 +02:00
Hover should return nothing in case of an interrupt.
This commit is contained in:
parent
e1b18cad3e
commit
30e80b53b2
1 changed files with 1 additions and 1 deletions
|
@ -451,7 +451,7 @@ public abstract class AbstractDebugTextHover implements ICEditorTextHover, IText
|
||||||
job.join();
|
job.join();
|
||||||
} catch (InterruptedException exc) {
|
} catch (InterruptedException exc) {
|
||||||
job.cancel();
|
job.cancel();
|
||||||
Thread.currentThread().interrupt();
|
return ""; //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
if (!job.getResult().isOK()) {
|
if (!job.getResult().isOK()) {
|
||||||
// indeterminate result
|
// indeterminate result
|
||||||
|
|
Loading…
Add table
Reference in a new issue