From 9ecb8e0c6e8fd33b4b0ed5d37826ea44bbd951e5 Mon Sep 17 00:00:00 2001 From: Vivian Kong Date: Thu, 1 Mar 2012 15:54:22 -0500 Subject: [PATCH] Bug 372675 - Change CModelManager.getElementsOutOfSynchWithBuffers() to public --- .../org/eclipse/cdt/internal/core/model/CModelManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/CModelManager.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/CModelManager.java index 6cb6cd4ac45..aef17fbdfab 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/CModelManager.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/CModelManager.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2010 QNX Software Systems and others. + * Copyright (c) 2000, 2012 QNX Software Systems and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -1162,7 +1162,7 @@ public class CModelManager implements IResourceChangeListener, IContentTypeChang /** * Returns the set of elements which are out of synch with their buffers. */ - protected Map getElementsOutOfSynchWithBuffers() { + public Map getElementsOutOfSynchWithBuffers() { return this.elementsOutOfSynchWithBuffers; }