1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

Mark unused API for deletion (#559)

Fixes #558
This commit is contained in:
Jonah Graham 2023-09-15 17:27:33 -04:00 committed by GitHub
parent 5a4320d9e3
commit 48804f5ed9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View file

@ -616,3 +616,13 @@ These APIs will be removed and are replaced by versions with `requestor` paramet
- org.eclipse.tm.internal.terminal.control.ITerminalViewControl.setTerminalTitle(String) - org.eclipse.tm.internal.terminal.control.ITerminalViewControl.setTerminalTitle(String)
See https://github.com/eclipse-cdt/cdt/issues/494 See https://github.com/eclipse-cdt/cdt/issues/494
## API Removals after December 2025
### Remove unreferenced methods in CDT
These APIs will be removed as they aren't used in CDT and have no known use case outside CDT either.
- org.eclipse.cdt.core.build.CBuildConfiguration.getScannerInfoCache()
See https://github.com/eclipse-cdt/cdt/issues/558

View file

@ -676,7 +676,9 @@ public abstract class CBuildConfiguration extends PlatformObject implements ICBu
/** /**
* @since 6.1 * @since 6.1
* @deprecated This method was never used in CDT.
*/ */
@Deprecated(forRemoval = true)
protected ScannerInfoCache getScannerInfoCache() { protected ScannerInfoCache getScannerInfoCache() {
return scannerInfoCache; return scannerInfoCache;
} }