Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 68157
Collapse All | Expand All

(-)CompilationUnitDocumentProvider.java (-3 / +3 lines)
Lines 475-481 Link Here
475
			 * @see IProblemRequestor#acceptProblem(IProblem)
475
			 * @see IProblemRequestor#acceptProblem(IProblem)
476
			 */
476
			 */
477
			public void acceptProblem(IProblem problem) {
477
			public void acceptProblem(IProblem problem) {
478
				if (isActive()) {
478
				if (fIsActive) {
479
					ProblemRequestorState state= (ProblemRequestorState) fProblemRequestorState.get();
479
					ProblemRequestorState state= (ProblemRequestorState) fProblemRequestorState.get();
480
					if (state != null)
480
					if (state != null)
481
						state.fReportedProblems.add(problem);
481
						state.fReportedProblems.add(problem);
Lines 508-514 Link Here
508
					fProblemRequestorState.set(null);
508
					fProblemRequestorState.set(null);
509
				}
509
				}
510
				
510
				
511
				if (stateCount == 0 && isActive())
511
				if (stateCount == 0 && fIsActive)
512
					reportProblems(state.fReportedProblems);
512
					reportProblems(state.fReportedProblems);
513
			}
513
			}
514
			
514
			
Lines 629-635 Link Here
629
			 * @see IProblemRequestor#isActive()
629
			 * @see IProblemRequestor#isActive()
630
			 */
630
			 */
631
			public boolean isActive() {
631
			public boolean isActive() {
632
				return fIsActive;
632
				return true;
633
			}
633
			}
634
			
634
			
635
			/*
635
			/*

Return to bug 68157