1 | void handleFlush(String output) {↵ | | 1 | void handleErrorOutput(String output) {↵
|
2 | if (ant != null) {↵ | | 2 | if (ant != null) {↵
|
3 | ant.handleFlush(output);↵ | | 3 | ant.handleErrorOutput(output);↵
|
4 | } else {↵ | | 4 | } else {↵
|
5 | super.handleFlush(output);↵ | | 5 | super.handleErrorOutput(output);↵
|
6 | }↵ | | 6 | }↵
|
7 | }↵ | | 7 | }↵
|
|
8 | /**↵ | | 8 | /**↵
|
9 | * Pass output sent to System.err to the new project.↵ | | 9 | * Pass output sent to System.err to the new project.↵
|
10 | *↵ | | 10 | *↵
|
11 | * @param output The error output to log. Should not be <code>null</code>.↵ | | 11 | * @param output The error output to log. Should not be <code>null</code>.↵
|
12 | *↵ | | 12 | *↵
|
13 | * @since Ant 1.6.2↵ | | 13 | * @since Ant 1.6.2↵
|
14 | */↵ | | 14 | */↵
|
15 | public void handleErrorOutput(String output) {↵ | | 15 | public void handleErrorFlush(String output) {↵
|
16 | if (ant != null) {↵ | | 16 | if (ant != null) {↵
|
17 | ant.handleErrorOutput(output);↵ | | 17 | ant.handleErrorFlush(output);↵
|
18 | } else {↵ | | 18 | } else {↵
|
19 | super.handleErrorOutput(output);↵ | | 19 | super.handleErrorFlush(output);↵
|
20 | }↵ | | 20 | }↵
|
21 | | | 21 |
|