mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-14 03:35:37 +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()
|
* @see org.eclipse.cdt.core.model.ICProject#getResolvedCPathEntries()
|
||||||
*/
|
*/
|
||||||
public IPathEntry[] getResolvedPathEntries() throws CModelException {
|
public IPathEntry[] getResolvedPathEntries() throws CModelException {
|
||||||
return CoreModel.getDefault().getResolvedPathEntries(this);
|
return CoreModel.getResolvedPathEntries(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.eclipse.cdt.core.model.ICProject#getRawCPathEntries()
|
* @see org.eclipse.cdt.core.model.ICProject#getRawCPathEntries()
|
||||||
*/
|
*/
|
||||||
public IPathEntry[] getRawPathEntries() throws CModelException {
|
public IPathEntry[] getRawPathEntries() throws CModelException {
|
||||||
return CoreModel.getDefault().getRawPathEntries(this);
|
return CoreModel.getRawPathEntries(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.eclipse.cdt.core.model.ICProject#setRawCPathEntries(org.eclipse.cdt.core.model.IPathEntry[], org.eclipse.core.runtime.IProgressMonitor)
|
* @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 {
|
public void setRawPathEntries(IPathEntry[] newEntries, IProgressMonitor monitor) throws CModelException {
|
||||||
CoreModel.getDefault().setRawPathEntries(this, newEntries, monitor);
|
CoreModel.setRawPathEntries(this, newEntries, monitor);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (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.IAdornmentProvider;
|
||||||
import org.eclipse.cdt.internal.ui.StandardCElementLabelProvider;
|
import org.eclipse.cdt.internal.ui.StandardCElementLabelProvider;
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
import org.eclipse.core.runtime.Path;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* CViewLabelProvider
|
* CViewLabelProvider
|
||||||
|
|
Loading…
Add table
Reference in a new issue