Browse Source

Change the failed message to something (hopefully) a bit more clear.

PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271902 13f79535-47bb-0310-9956-ffa450edef68
master
Diane Holt 23 years ago
parent
commit
bc47be3b76
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Javac.java
  2. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Rmic.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Javac.java View File

@@ -111,7 +111,7 @@ import java.util.Vector;
public class Javac extends MatchingTask {

private final static String FAIL_MSG
= "Compile failed, messages should have been provided.";
= "Compile failed; see the compiler error output for details.";

private Path src;
private File destDir;


+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Rmic.java View File

@@ -105,7 +105,7 @@ import java.util.Vector;
public class Rmic extends MatchingTask {

private final static String FAIL_MSG
= "Rmic failed, messages should have been provided.";
= "Rmic failed; see the compiler error output for details.";

private File baseDir;
private String classname;


Loading…
Cancel
Save