1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Renamed IErrorParser3.endOfStream method to shutdown for consistency

with IConsoleParser.
This commit is contained in:
Sergey Prigogin 2012-04-19 13:52:20 -07:00
parent a8bcd69646
commit b3bc74fb45
2 changed files with 2 additions and 2 deletions

View file

@ -918,7 +918,7 @@ outer:
for (IErrorParser[] parsers : fErrorParsers.values()) { for (IErrorParser[] parsers : fErrorParsers.values()) {
for (IErrorParser parser : parsers) { for (IErrorParser parser : parsers) {
if (parser instanceof IErrorParser3) { if (parser instanceof IErrorParser3) {
((IErrorParser3) parser).endOfStream(); ((IErrorParser3) parser).shutdown();
} }
} }
} }

View file

@ -18,5 +18,5 @@ public interface IErrorParser3 extends IErrorParser2 {
* Called to let the parser know that the end of the error stream has been reached. * Called to let the parser know that the end of the error stream has been reached.
* Can be used by the parser to flush its internal buffers. * Can be used by the parser to flush its internal buffers.
*/ */
void endOfStream(); void shutdown();
} }