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:
parent
e8b1740a4f
commit
0f10e95c21
2 changed files with 3 additions and 4 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue