[jboss-cvs] jboss-seam/src/main/org/jboss/seam ...

Gavin King gavin.king at jboss.com
Sun Oct 8 16:58:03 EDT 2006


  User: gavin   
  Date: 06/10/08 16:58:03

  Modified:    src/main/org/jboss/seam  Component.java
  Log:
  JBSEAM-178 delimited bundleNames
  temp fix for bug in new context events stuff
  
  Revision  Changes    Path
  1.178     +2 -2      jboss-seam/src/main/org/jboss/seam/Component.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Component.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/Component.java,v
  retrieving revision 1.177
  retrieving revision 1.178
  diff -u -b -r1.177 -r1.178
  --- Component.java	8 Oct 2006 18:57:45 -0000	1.177
  +++ Component.java	8 Oct 2006 20:58:03 -0000	1.178
  @@ -107,7 +107,7 @@
    *
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
    * @author Gavin King
  - * @version $Revision: 1.177 $
  + * @version $Revision: 1.178 $
    */
   @Scope(ScopeType.APPLICATION)
   public class Component
  @@ -1487,7 +1487,7 @@
            Init.FactoryBinding valueBinding = init.getFactoryValueBinding(name);
            if (methodBinding!=null) //let the XML take precedence
            {
  -            Object result = methodBinding.getMethodBinding().invoke(null);
  +            Object result = methodBinding.getMethodBinding().invoke();
               return handleFactoryMethodResult(name, null, result, methodBinding.getScope());
            }
            else if (valueBinding!=null) //let the XML take precedence
  
  
  



More information about the jboss-cvs-commits mailing list