[jboss-cvs] jboss-seam/src/debug/org/jboss/seam/debug/hot ...

Gavin King gavin.king at jboss.com
Wed Mar 7 00:43:56 EST 2007


  User: gavin   
  Date: 07/03/07 00:43:56

  Modified:    src/debug/org/jboss/seam/debug/hot  HotDepoyFilter.java
  Log:
  fix case where no hotdeploy
  
  Revision  Changes    Path
  1.2       +1 -1      jboss-seam/src/debug/org/jboss/seam/debug/hot/HotDepoyFilter.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HotDepoyFilter.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/debug/org/jboss/seam/debug/hot/HotDepoyFilter.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- HotDepoyFilter.java	7 Mar 2007 05:20:40 -0000	1.1
  +++ HotDepoyFilter.java	7 Mar 2007 05:43:56 -0000	1.2
  @@ -39,7 +39,7 @@
               throws IOException, ServletException
      {
         Init init = (Init) getServletContext().getAttribute( Seam.getComponentName(Init.class) );
  -      if (init!=null)
  +      if ( init!=null && init.hasHotDeployableComponents() )
         {
            for ( File file: init.getHotDeployPaths() )
            {
  
  
  



More information about the jboss-cvs-commits mailing list