You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by du...@locus.apache.org on 2000/05/11 01:01:07 UTC

cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs Javac.java

duncan      00/05/10 16:01:07

  Modified:    src/main/org/apache/tools/ant/taskdefs Javac.java
  Log:
  Hack to make clear that Modern compiler isn't yet implemented. Of course,
  a real solution is needed, but I didn't want to see any more unneeded
  confusion over this.
  
  Revision  Changes    Path
  1.11      +3 -0      jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Javac.java
  
  Index: Javac.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Javac.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- Javac.java	2000/03/04 20:07:02	1.10
  +++ Javac.java	2000/05/10 23:01:07	1.11
  @@ -432,6 +432,9 @@
   
       private void doModernCompile() throws BuildException {
           project.log("Performing a Modern Compile");
  +        project.log("WARNING: Modern Compiler usage not implemented!");
  +        project.log("Switching modes to Classic");
  +        doClassicCompile();
       }
   
       /**