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

Gavin King gavin.king at jboss.com
Wed Sep 6 22:04:18 EDT 2006


  User: gavin   
  Date: 06/09/06 22:04:18

  Modified:    src/main/org/jboss/seam/core  ConversationEntry.java
  Log:
  fixed a bug reported in the forum
  
  Revision  Changes    Path
  1.17      +2 -2      jboss-seam/src/main/org/jboss/seam/core/ConversationEntry.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConversationEntry.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ConversationEntry.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -b -r1.16 -r1.17
  --- ConversationEntry.java	12 Jul 2006 20:44:59 -0000	1.16
  +++ ConversationEntry.java	7 Sep 2006 02:04:18 -0000	1.17
  @@ -30,19 +30,19 @@
   
      public ConversationEntry(String id, LinkedList<String> stack)
      {
  -      super();
         this.id = id;
         conversationIdStack = stack;
         startDatetime = new Date();
  +      touch();
      }
   
      public ConversationEntry(String id)
      {
  -      super();
         this.id = id;
         conversationIdStack = new LinkedList<String>();
         conversationIdStack.add(id);
         startDatetime = new Date();
  +      touch();
      }
   
      public String getDescription() {
  
  
  



More information about the jboss-cvs-commits mailing list