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:
parent
073c4f893f
commit
6454a1704f
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue