mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
Removed deprecated ICPPBase.getBaseClassSpecifierName() method.
Change-Id: I7a846bf9f91193bd74ea8ae006a35159e47a7367
This commit is contained in:
parent
b50f68c053
commit
6a7969bc85
4 changed files with 0 additions and 28 deletions
|
@ -44,13 +44,6 @@ public interface ICPPBase extends Cloneable {
|
|||
*/
|
||||
public IType getBaseClassType();
|
||||
|
||||
/**
|
||||
* @deprecated Don't use it, a base class may be specified without the use of a name.
|
||||
* @noreference This method is not intended to be referenced by clients.
|
||||
*/
|
||||
@Deprecated
|
||||
public IName getBaseClassSpecifierName();
|
||||
|
||||
/**
|
||||
* Returns the name of the class definition that originally declares the base.
|
||||
* @since 5.5
|
||||
|
|
|
@ -91,12 +91,6 @@ public class CPPBaseClause implements ICPPBase, ICPPInternalBase {
|
|||
return inheritedConstructorsSource;
|
||||
}
|
||||
|
||||
@Override
|
||||
@Deprecated
|
||||
public IName getBaseClassSpecifierName() {
|
||||
return base.getName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public IName getClassDefinitionName() {
|
||||
IASTNode parent = base.getParent();
|
||||
|
|
|
@ -84,11 +84,6 @@ class CompositeCPPClassType extends CompositeCPPBinding implements ICPPClassType
|
|||
return baseClass;
|
||||
}
|
||||
|
||||
@Override @Deprecated
|
||||
public IName getBaseClassSpecifierName() {
|
||||
return base.getBaseClassSpecifierName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public IName getClassDefinitionName() {
|
||||
return base.getClassDefinitionName();
|
||||
|
|
|
@ -86,11 +86,6 @@ class PDOMCPPBase implements ICPPBase, ICPPInternalBase {
|
|||
return getDB().getByte(record + FLAGS);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PDOMName getBaseClassSpecifierName() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public PDOMName getClassDefinitionName() {
|
||||
try {
|
||||
|
@ -198,11 +193,6 @@ class PDOMCPPBase implements ICPPBase, ICPPInternalBase {
|
|||
return baseClass;
|
||||
}
|
||||
|
||||
@Override @Deprecated
|
||||
public IName getBaseClassSpecifierName() {
|
||||
return base.getBaseClassSpecifierName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public IName getClassDefinitionName() {
|
||||
return base.getClassDefinitionName();
|
||||
|
|
Loading…
Add table
Reference in a new issue