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

Peter Muir peter at bleepbleep.org.uk
Sat Jun 30 15:01:05 EDT 2007


  User: pmuir   
  Date: 07/06/30 15:01:05

  Modified:    src/main/org/jboss/seam  Entity.java
  Log:
  Use the deproxied class to build the model
  
  Revision  Changes    Path
  1.11      +1 -1      jboss-seam/src/main/org/jboss/seam/Entity.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Entity.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/Entity.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- Entity.java	28 Jun 2007 23:54:05 -0000	1.10
  +++ Entity.java	30 Jun 2007 19:01:05 -0000	1.11
  @@ -194,7 +194,7 @@
         Model model = (Model) Contexts.getApplicationContext().get(name);
         if ( model==null || !(model instanceof Entity) )
         {
  -         Entity entity = new Entity(clazz);
  +         Entity entity = new Entity(entityClass);
            Contexts.getApplicationContext().set(name, entity);
            return entity;
         }
  
  
  



More information about the jboss-cvs-commits mailing list