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

[305178] Make MonitorInterruptJob protected.

This commit is contained in:
Marc Khouzam 2010-03-12 19:09:53 +00:00
parent 8c78cc1ed7
commit 8b279e5b8d

View file

@ -666,8 +666,10 @@ public class GDBBackend extends AbstractDsfService implements IGDBBackend {
* this job should wait for. INTERRUPT_TIMEOUT_DEFAULT indicates
* to use the default of 500 ms. The default is also use if the
* timeout value is 0 or negative.
*
* @since 3.0
*/
private class MonitorInterruptJob extends Job {
protected class MonitorInterruptJob extends Job {
private final static int TIMEOUT_DEFAULT_VALUE = 500;
private final RequestMonitor fRequestMonitor;