You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by bw...@apache.org on 2003/12/17 11:46:04 UTC

cvs commit: maven-plugins/jxr/src/main/org/apache/maven/jxr CodeTransform.java

bwalding    2003/12/17 02:46:04

  Modified:    jxr/src/main/org/apache/maven/jxr CodeTransform.java
  Log:
  Add a small message to show which transform the jxr process failed during.
  Not a great solution, but this code is such a rat's nest that I'd rather not fix it fully
  at the moment.
  
  Revision  Changes    Path
  1.9       +5 -0      maven-plugins/jxr/src/main/org/apache/maven/jxr/CodeTransform.java
  
  Index: CodeTransform.java
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jxr/src/main/org/apache/maven/jxr/CodeTransform.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- CodeTransform.java	19 Oct 2003 13:47:41 -0000	1.8
  +++ CodeTransform.java	17 Dec 2003 10:46:04 -0000	1.9
  @@ -711,6 +711,11 @@
               out.println(getFooter());
               out.flush();
           }
  +        catch (RuntimeException e)
  +        {
  +            System.out.println("Unable to process " + sourcefile + " => " + destfile);
  +            throw e;
  +        }       
           finally
           {
               if (fr != null)
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org