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 270005
Collapse All | Expand All

(-)a/maven/src/org/netbeans/modules/maven/execute/AbstractOutputHandler.java (-1 / +1 lines)
Lines 89-95 Link Here
89
    private IndexingBridge.Lock protectedMode; // #211005
89
    private IndexingBridge.Lock protectedMode; // #211005
90
    private final Object protectedModeLock = new Object();
90
    private final Object protectedModeLock = new Object();
91
    private RequestProcessor.Task sleepTask;
91
    private RequestProcessor.Task sleepTask;
92
    private static final int SLEEP_DELAY = 5000;
92
    private static final int SLEEP_DELAY = Integer.getInteger(AbstractOutputHandler.class.getName() + ".SLEEP_DELAY", 15000); // #270005
93
93
94
    protected AbstractOutputHandler(Project proj, final ProgressHandle hand, RunConfig config, OutputVisitor visitor) {
94
    protected AbstractOutputHandler(Project proj, final ProgressHandle hand, RunConfig config, OutputVisitor visitor) {
95
        processors = new HashMap<String, Set<OutputProcessor>>();
95
        processors = new HashMap<String, Set<OutputProcessor>>();

Return to bug 270005