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

(-)model/org/eclipse/jdt/internal/core/JavaModelManager.java (-3 / +3 lines)
Lines 3958-3970 Link Here
3958
		// save variable and container values on snapshot/full save
3958
		// save variable and container values on snapshot/full save
3959
		saveVariablesAndContainers(context);
3959
		saveVariablesAndContainers(context);
3960
		
3960
		
3961
		// save non-chaining jar cache on snapshot/full save
3962
		saveNonChainingJarsCache();
3963
3964
		if (VERBOSE)
3961
		if (VERBOSE)
3965
			traceVariableAndContainers("Saved", start); //$NON-NLS-1$
3962
			traceVariableAndContainers("Saved", start); //$NON-NLS-1$
3966
3963
3967
		if (context.getKind() == ISaveContext.FULL_SAVE) {
3964
		if (context.getKind() == ISaveContext.FULL_SAVE) {
3965
			// save non-chaining jar cache on snapshot/full save
3966
			saveNonChainingJarsCache();
3967
3968
			// will need delta since this save (see https://bugs.eclipse.org/bugs/show_bug.cgi?id=38658)
3968
			// will need delta since this save (see https://bugs.eclipse.org/bugs/show_bug.cgi?id=38658)
3969
			context.needDelta();
3969
			context.needDelta();
3970
3970

Return to bug 270784