Merge branch '2.7.x'

Closes gh-31526
This commit is contained in:
Andy Wilkinson
2022-06-24 13:10:10 +01:00
24 changed files with 372 additions and 371 deletions

View File

@@ -54,12 +54,12 @@ public class LogUpdateEvent extends UpdateEvent {
public void print() {
switch (this.streamType) {
case STD_OUT:
System.out.println(this);
return;
case STD_ERR:
System.err.println(this);
return;
case STD_OUT:
System.out.println(this);
return;
case STD_ERR:
System.err.println(this);
return;
}
}