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

Code cleanup.

This commit is contained in:
Sergey Prigogin 2008-09-22 01:23:03 +00:00
parent 4db6d9faee
commit d62a7dc8a6

View file

@ -19,7 +19,7 @@ public interface IOccurrencesFinder {
public static final int K_OCCURRENCE= 5;
/**
* Element representing a occurrence
* Element representing an occurrence
*/
public static class OccurrenceLocation {
private final int fOffset;
@ -54,7 +54,6 @@ public interface IOccurrencesFinder {
public String toString() {
return "[" + fOffset + " / " + fLength + "] " + fDescription; //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
}
}
public String initialize(IASTTranslationUnit root, IASTNode node);
@ -101,7 +100,6 @@ public interface IOccurrencesFinder {
*/
public OccurrenceLocation[] getOccurrences();
public int getSearchKind();
/**
@ -109,5 +107,4 @@ public interface IOccurrencesFinder {
* @return returns the id of this finder.
*/
public String getID();
}