1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-13 19:25:38 +02:00

Get rid of warnings.

This commit is contained in:
Alain Magloire 2004-05-14 23:09:16 +00:00
parent e8b1740a4f
commit 0f10e95c21
2 changed files with 3 additions and 4 deletions

View file

@ -366,21 +366,21 @@ public class CProject extends Openable implements ICProject {
* @see org.eclipse.cdt.core.model.ICProject#getResolvedCPathEntries()
*/
public IPathEntry[] getResolvedPathEntries() throws CModelException {
return CoreModel.getDefault().getResolvedPathEntries(this);
return CoreModel.getResolvedPathEntries(this);
}
/* (non-Javadoc)
* @see org.eclipse.cdt.core.model.ICProject#getRawCPathEntries()
*/
public IPathEntry[] getRawPathEntries() throws CModelException {
return CoreModel.getDefault().getRawPathEntries(this);
return CoreModel.getRawPathEntries(this);
}
/* (non-Javadoc)
* @see org.eclipse.cdt.core.model.ICProject#setRawCPathEntries(org.eclipse.cdt.core.model.IPathEntry[], org.eclipse.core.runtime.IProgressMonitor)
*/
public void setRawPathEntries(IPathEntry[] newEntries, IProgressMonitor monitor) throws CModelException {
CoreModel.getDefault().setRawPathEntries(this, newEntries, monitor);
CoreModel.setRawPathEntries(this, newEntries, monitor);
}
/* (non-Javadoc)

View file

@ -14,7 +14,6 @@ import org.eclipse.cdt.core.model.IIncludeReference;
import org.eclipse.cdt.internal.ui.IAdornmentProvider;
import org.eclipse.cdt.internal.ui.StandardCElementLabelProvider;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
/*
* CViewLabelProvider