stevel 02/04/29 17:03:25
Modified: src/main/org/apache/tools/ant/taskdefs/compilers
CompilerAdapterFactory.java
Log:
now you get:
Compiler Adapter 'false' can't be found.
Revision Changes Path
1.14 +2 -2
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/compilers/CompilerAdapterFactory.java
Index: CompilerAdapterFactory.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/compilers/CompilerAdapterFactory.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- CompilerAdapterFactory.java 29 Apr 2002 23:38:04 -0000 1.13
+++ CompilerAdapterFactory.java 30 Apr 2002 00:03:25 -0000 1.14
@@ -191,8 +191,8 @@
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);
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>