1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-01 21:35:40 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2013-10-17 20:34:42 -07:00
parent c644a857ba
commit 63019e2c6a
2 changed files with 26 additions and 27 deletions

View file

@ -82,8 +82,8 @@ public class CSearchResult extends AbstractTextSearchResult implements IEditorMa
try {
final IStorage storage= ((IStorageEditorInput) input).getStorage();
path= storage.getFullPath();
} catch (CoreException exc) {
// ignore
} catch (CoreException e) {
CUIPlugin.log(e);
}
} else if (input instanceof IPathEditorInput) {
path= ((IPathEditorInput) input).getPath();
@ -191,7 +191,7 @@ public class CSearchResult extends AbstractTextSearchResult implements IEditorMa
}
/**
* Remember whether the indexer was busy when the search was performed.
* Remembers whether the indexer was busy when the search was performed.
* @param b
*/
public void setIndexerBusy(boolean b) {
@ -199,7 +199,7 @@ public class CSearchResult extends AbstractTextSearchResult implements IEditorMa
}
/**
* Tell if the indexer was busy when search results were gathered.
* Tells if the indexer was busy when search results were gathered.
*/
public boolean wasIndexerBusy() {
return indexerBusy;

View file

@ -14,7 +14,6 @@ import org.eclipse.search.ui.text.Match;
import org.eclipse.search.ui.text.MatchFilter;
public class HidePolymorphicCalls extends MatchFilter {
public static final MatchFilter FILTER = new HidePolymorphicCalls();
@Override