1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 08:46:02 +02:00

Removed an unused method.

Change-Id: Ia49cb3b968061c5e23d2ab10925bde85ffd5350c
This commit is contained in:
Sergey Prigogin 2015-12-18 17:53:07 -08:00
parent 2356094497
commit 9a576557ed

View file

@ -353,7 +353,7 @@ public abstract class PDOMBinding extends PDOMNamedNode implements IPDOMBinding
}
@Override
final public boolean isFileLocal() throws CoreException {
public final boolean isFileLocal() throws CoreException {
return getDB().getRecPtr(record + LOCAL_TO_FILE) != 0;
}
@ -442,7 +442,7 @@ public abstract class PDOMBinding extends PDOMNamedNode implements IPDOMBinding
}
@Override
final public void delete(PDOMLinkage linkage) throws CoreException {
public final void delete(PDOMLinkage linkage) throws CoreException {
assert false;
}
@ -467,11 +467,6 @@ public abstract class PDOMBinding extends PDOMNamedNode implements IPDOMBinding
return getBindings(new ScopeLookupData(name, resolve, prefix));
}
@Deprecated
public IBinding[] getBindings(IASTName name, boolean resolve, boolean prefix, IIndexFileSet fileSet) {
return IBinding.EMPTY_BINDING_ARRAY;
}
public IBinding[] getBindings(ScopeLookupData lookup) {
return IBinding.EMPTY_BINDING_ARRAY;
}