1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

the method should be static

This commit is contained in:
Alain Magloire 2005-02-14 22:09:49 +00:00
parent 073c4f893f
commit 6454a1704f

View file

@ -666,7 +666,7 @@ public class CoreModel {
* @see #getPathEntryContainer(IPath, IJavaProject)
* @see IPathEntryContainer
*/
public void setPathEntryContainer(ICProject[] affectedProjects, IPathEntryContainer container, IProgressMonitor monitor)
public static void setPathEntryContainer(ICProject[] affectedProjects, IPathEntryContainer container, IProgressMonitor monitor)
throws CModelException {
pathEntryManager.setPathEntryContainer(affectedProjects, container, monitor);
}
@ -681,7 +681,7 @@ public class CoreModel {
* @param changes array of changes.
* @param monitor progress monitor
*/
public void pathEntryContainerUpdates(IPathEntryContainerExtension container, PathEntryContainerChanged[] changes, IProgressMonitor monitor) {
public static void pathEntryContainerUpdates(IPathEntryContainerExtension container, PathEntryContainerChanged[] changes, IProgressMonitor monitor) {
pathEntryManager.pathEntryContainerUpdates(container, changes, monitor);
}