mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
fix warnings.
This commit is contained in:
parent
6c564a4f8c
commit
a552aa1760
3 changed files with 4 additions and 1 deletions
|
@ -50,7 +50,9 @@ public class StandaloneFastIndexer extends StandaloneIndexer {
|
||||||
* @param mapper - a mapper used to determine ICLanguage for a particular file
|
* @param mapper - a mapper used to determine ICLanguage for a particular file
|
||||||
* @param log - logger
|
* @param log - logger
|
||||||
* @throws CoreException
|
* @throws CoreException
|
||||||
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public StandaloneFastIndexer(File writableIndexFile, IIndexLocationConverter converter, Map<String, IPDOMLinkageFactory> linkageFactoryMappings,
|
public StandaloneFastIndexer(File writableIndexFile, IIndexLocationConverter converter, Map<String, IPDOMLinkageFactory> linkageFactoryMappings,
|
||||||
IScannerInfo scanner, ILanguageMapper mapper, IParserLogService log) throws CoreException {
|
IScannerInfo scanner, ILanguageMapper mapper, IParserLogService log) throws CoreException {
|
||||||
super(new WritableCIndex(new WritablePDOM(writableIndexFile, converter, linkageFactoryMappings),new IIndexFragment[0]),
|
super(new WritableCIndex(new WritablePDOM(writableIndexFile, converter, linkageFactoryMappings),new IIndexFragment[0]),
|
||||||
|
|
|
@ -55,7 +55,9 @@ public class StandaloneFullIndexer extends StandaloneIndexer{
|
||||||
* @param codeReaderFactory - factory that provides CodeReaders for files included
|
* @param codeReaderFactory - factory that provides CodeReaders for files included
|
||||||
* by the source code being parsed.
|
* by the source code being parsed.
|
||||||
* @throws CoreException
|
* @throws CoreException
|
||||||
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public StandaloneFullIndexer(File writableIndexFile, IIndexLocationConverter converter, Map<String, IPDOMLinkageFactory> linkageFactoryMappings,
|
public StandaloneFullIndexer(File writableIndexFile, IIndexLocationConverter converter, Map<String, IPDOMLinkageFactory> linkageFactoryMappings,
|
||||||
IScannerInfo scanner, ILanguageMapper mapper, IParserLogService log, ICodeReaderFactory codeReaderFactory) throws CoreException {
|
IScannerInfo scanner, ILanguageMapper mapper, IParserLogService log, ICodeReaderFactory codeReaderFactory) throws CoreException {
|
||||||
super(new WritableCIndex(new WritablePDOM(writableIndexFile, converter, linkageFactoryMappings),new IIndexFragment[0]),
|
super(new WritableCIndex(new WritablePDOM(writableIndexFile, converter, linkageFactoryMappings),new IIndexFragment[0]),
|
||||||
|
|
|
@ -22,7 +22,6 @@ import org.xml.sax.helpers.AttributesImpl;
|
||||||
import org.eclipse.cdt.core.settings.model.ICFolderDescription;
|
import org.eclipse.cdt.core.settings.model.ICFolderDescription;
|
||||||
import org.eclipse.cdt.core.settings.model.ICLanguageSetting;
|
import org.eclipse.cdt.core.settings.model.ICLanguageSetting;
|
||||||
import org.eclipse.cdt.core.settings.model.ICLanguageSettingEntry;
|
import org.eclipse.cdt.core.settings.model.ICLanguageSettingEntry;
|
||||||
import org.eclipse.cdt.core.settings.model.ICSettingEntry;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base class implementing standard import and export functionality
|
* Base class implementing standard import and export functionality
|
||||||
|
|
Loading…
Add table
Reference in a new issue