[jboss-cvs] jboss-seam/examples/dvdstore/src/com/jboss/dvd/seam ...

Gavin King gavin.king at jboss.com
Thu Nov 16 21:49:04 EST 2006


  User: gavin   
  Date: 06/11/16 21:49:04

  Modified:    examples/dvdstore/src/com/jboss/dvd/seam   LoginAction.java
                        ProcessDefinitionSwitcher.java
  Log:
  remove lots of create=true
  
  Revision  Changes    Path
  1.30      +2 -4      jboss-seam/examples/dvdstore/src/com/jboss/dvd/seam/LoginAction.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: LoginAction.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/src/com/jboss/dvd/seam/LoginAction.java,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -b -r1.29 -r1.30
  --- LoginAction.java	22 Sep 2006 16:32:08 -0000	1.29
  +++ LoginAction.java	17 Nov 2006 02:49:04 -0000	1.30
  @@ -31,11 +31,9 @@
       @PersistenceContext
       private EntityManager em;
   
  -    @In
  -    Context sessionContext;
  +    @In Context sessionContext;
       
  -    @In(create=true) 
  -    Actor actor;
  +    @In Actor actor;
       
       String username = "";
       String password = "";
  
  
  
  1.9       +2 -2      jboss-seam/examples/dvdstore/src/com/jboss/dvd/seam/ProcessDefinitionSwitcher.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ProcessDefinitionSwitcher.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/src/com/jboss/dvd/seam/ProcessDefinitionSwitcher.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- ProcessDefinitionSwitcher.java	24 Jun 2006 10:32:00 -0000	1.8
  +++ ProcessDefinitionSwitcher.java	17 Nov 2006 02:49:04 -0000	1.9
  @@ -25,10 +25,10 @@
             "ordermanagement3.jpdl.xml" 
          };
   
  -    @In(create=true, value="org.jboss.seam.core.jbpm")
  +    @In(value="org.jboss.seam.core.jbpm")
       private Jbpm jbpm;
       
  -    @In(create=true)
  +    @In
       private JbpmContext jbpmContext;
       
       public List<SelectItem> getProcessDefinitions()
  
  
  



More information about the jboss-cvs-commits mailing list