Browse Source

now you get:

Compiler Adapter 'false' can't be found.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272598 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 23 years ago
parent
commit
a96d884519
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/compilers/CompilerAdapterFactory.java

+ 2
- 2
src/main/org/apache/tools/ant/taskdefs/compilers/CompilerAdapterFactory.java View File

@@ -191,8 +191,8 @@ public class CompilerAdapterFactory {
Object o = c.newInstance();
return (CompilerAdapter) o;
} catch (ClassNotFoundException cnfe) {
throw new BuildException("Compiler Adapter "+className
+ " can\'t be found.", cnfe);
throw new BuildException("Compiler Adapter '"+className
+ "' can\'t be found.", cnfe);
} catch (ClassCastException cce) {
throw new BuildException(className + " isn\'t the classname of "
+ "a compiler adapter.", cce);


Loading…
Cancel
Save