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

(-)ui/org/eclipse/jdt/internal/ui/javaeditor/ASTProvider.java (-2 / +2 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2007 IBM Corporation and others.
2
 * Copyright (c) 2000, 2008 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 463-469 Link Here
463
			} catch (InterruptedException e) {
463
			} catch (InterruptedException e) {
464
				return null; // thread has been interrupted don't compute AST
464
				return null; // thread has been interrupted don't compute AST
465
			}
465
			}
466
		} else if (waitFlag == SharedASTProvider.WAIT_NO || (waitFlag == SharedASTProvider.WAIT_ACTIVE_ONLY && !(isActiveElement && fAST == null)))
466
		} else if (waitFlag == SharedASTProvider.WAIT_NO || waitFlag == SharedASTProvider.WAIT_ACTIVE_ONLY)
467
			return null;
467
			return null;
468
468
469
		if (isActiveElement)
469
		if (isActiveElement)

Return to bug 206487