Skip to content

Commit 1aef97b

Browse files
committed
Forgot to implement flush as in jenkinsci/jenkins#3703.
1 parent f5c9b51 commit 1aef97b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/hudson/tasks/_ant/AntConsoleAnnotator.java

+5
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,11 @@ private boolean endsWith(String line, char c) {
9696
return len>0 && line.charAt(len-1)==c;
9797
}
9898

99+
@Override
100+
public void flush() throws IOException {
101+
out.flush();
102+
}
103+
99104
@Override
100105
public void close() throws IOException {
101106
super.close();

0 commit comments

Comments
 (0)