[jboss-cvs] jboss-seam/examples/seamspace/src/org/jboss/seam/example/seamspace ...

Shane Bryzak Shane_Bryzak at symantec.com
Tue Jan 9 06:51:01 EST 2007


  User: sbryzak2
  Date: 07/01/09 06:51:01

  Modified:    examples/seamspace/src/org/jboss/seam/example/seamspace 
                        ProfileAction.java
  Log:
  fixed loggedIn references
  
  Revision  Changes    Path
  1.7       +1 -1      jboss-seam/examples/seamspace/src/org/jboss/seam/example/seamspace/ProfileAction.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ProfileAction.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seamspace/src/org/jboss/seam/example/seamspace/ProfileAction.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- ProfileAction.java	8 Jan 2007 12:51:41 -0000	1.6
  +++ ProfileAction.java	9 Jan 2007 11:51:01 -0000	1.7
  @@ -32,7 +32,7 @@
      @Factory("selectedMember")
      public void display()
      {      
  -      if (name == null && Identity.loggedIn())
  +      if (name == null && Identity.instance().isLoggedIn())
         {
            selectedMember = (Member) entityManager.createQuery(
                  "from Member where username = :username")
  
  
  



More information about the jboss-cvs-commits mailing list