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:
parent
a8bcd69646
commit
b3bc74fb45
2 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue