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

(-)model/org/eclipse/jdt/internal/core/JavaModelOperation.java (-1 lines)
Lines 739-745 Link Here
739
					}
739
					}
740
				}
740
				}
741
				deltaProcessor.resetProjectCaches();
741
				deltaProcessor.resetProjectCaches();
742
				deltaProcessor.projectCachesToReset.clear();
743
				
742
				
744
				// fire only iff:
743
				// fire only iff:
745
				// - the operation is a top level operation
744
				// - the operation is a top level operation
(-)model/org/eclipse/jdt/internal/core/DeltaProcessor.java (-1 / +2 lines)
Lines 1784-1790 Link Here
1784
			return this.currentDelta;
1784
			return this.currentDelta;
1785
		} finally {
1785
		} finally {
1786
			this.currentDelta = null;
1786
			this.currentDelta = null;
1787
			this.projectCachesToReset.clear();
1788
		}
1787
		}
1789
	}
1788
	}
1790
	/*
1789
	/*
Lines 1811-1816 Link Here
1811
			JavaProject project = (JavaProject) iterator.next();
1810
			JavaProject project = (JavaProject) iterator.next();
1812
			project.resetCaches();
1811
			project.resetCaches();
1813
		}
1812
		}
1813
		
1814
		this.projectCachesToReset.clear();
1814
	}
1815
	}
1815
	/*
1816
	/*
1816
	 * Registers the given delta with this delta processor.
1817
	 * Registers the given delta with this delta processor.

Return to bug 235369