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

Gavin King gavin.king at jboss.com
Sun Feb 11 15:23:03 EST 2007


  User: gavin   
  Date: 07/02/11 15:23:03

  Modified:    src/main/org/jboss/seam  Component.java
  Log:
  fx npe
  
  Revision  Changes    Path
  1.236     +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.235
  retrieving revision 1.236
  diff -u -b -r1.235 -r1.236
  --- Component.java	11 Feb 2007 19:59:41 -0000	1.235
  +++ Component.java	11 Feb 2007 20:23:03 -0000	1.236
  @@ -128,7 +128,7 @@
    *
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
    * @author Gavin King
  - * @version $Revision: 1.235 $
  + * @version $Revision: 1.236 $
    */
   @Scope(ScopeType.APPLICATION)
   @SuppressWarnings("deprecation")
  @@ -161,7 +161,7 @@
      private Map<String, Method> removeMethods = new HashMap<String, Method>();
      private Set<Method> validateMethods = new HashSet<Method>();
      private Set<Method> lifecycleMethods = new HashSet<Method>();
  -   private Set<Method> conversationManagementMethods;
  +   private Set<Method> conversationManagementMethods = new HashSet<Method>();
      
      private List<BijectedAttribute<In>> inAttributes = new ArrayList<BijectedAttribute<In>>();
      private List<BijectedAttribute<Out>> outAttributes = new ArrayList<BijectedAttribute<Out>>();
  
  
  



More information about the jboss-cvs-commits mailing list