This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 183699
Collapse All | Expand All

(-)a/ruby.debugger/src/org/netbeans/modules/ruby/debugger/ToolTipAnnotation.java (-2 / +3 lines)
Lines 67-73 Link Here
67
public final class ToolTipAnnotation extends Annotation implements Runnable {
67
public final class ToolTipAnnotation extends Annotation implements Runnable {
68
68
69
    private static final Boolean SKIP_BALLOON_EVAL = Boolean.getBoolean("ruby.debugger.skip.balloon.evaluation"); // NOI18N
69
    private static final Boolean SKIP_BALLOON_EVAL = Boolean.getBoolean("ruby.debugger.skip.balloon.evaluation"); // NOI18N
70
    
70
    private static final RequestProcessor requestProcessor = new RequestProcessor("Ruby tooltip annotations");
71
71
    private Part lp;
72
    private Part lp;
72
    private EditorCookie ec;
73
    private EditorCookie ec;
73
    
74
    
Lines 83-89 Link Here
83
        if (_ec == null) { return null; }
84
        if (_ec == null) { return null; }
84
        this.lp = _lp;
85
        this.lp = _lp;
85
        this.ec = _ec;
86
        this.ec = _ec;
86
        RequestProcessor.getDefault().post(this);
87
        requestProcessor.post(this);
87
        return null;
88
        return null;
88
    }
89
    }
89
    
90
    

Return to bug 183699