1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Removed an unused method.

Change-Id: Ica6fc7ba71ec039f4a33ca01c5fc1867dfdb54b1
This commit is contained in:
Sergey Prigogin 2017-02-13 15:14:44 -08:00
parent 3f0e34177c
commit e431143a97

View file

@ -153,18 +153,6 @@ public final class IncludeCreationContext extends InclusionContext {
return fHeadersIncludedPreviously.contains(header);
}
/**
* Returns the path of the partner header included previously, or {@code null} if the partner was not
* included.
*/
public final IPath getPartnerHeaderIncludedPreviously() {
for (IPath path : fHeadersIncludedPreviously) {
if (isPartnerFile(path))
return path;
}
return null;
}
/**
* Checks if the given file is suitable for inclusion. A file is suitable for inclusion if it is a header
* file, or if it is already included by some other file.