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

Gavin King gavin.king at jboss.com
Tue Oct 10 17:00:53 EDT 2006


  User: gavin   
  Date: 06/10/10 17:00:53

  Modified:    src/main/org/jboss/seam/util  Id.java
  Log:
  long overdue refactoring
  
  Revision  Changes    Path
  1.2       +2 -1      jboss-seam/src/main/org/jboss/seam/util/Id.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Id.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/util/Id.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- Id.java	25 Aug 2005 02:45:58 -0000	1.1
  +++ Id.java	10 Oct 2006 21:00:53 -0000	1.2
  @@ -1,4 +1,4 @@
  -//$Id: Id.java,v 1.1 2005/08/25 02:45:58 gavin Exp $
  +//$Id: Id.java,v 1.2 2006/10/10 21:00:53 gavin Exp $
   package org.jboss.seam.util;
   
   import java.util.concurrent.atomic.AtomicInteger;
  @@ -9,6 +9,7 @@
      
      public static String nextId() 
      {
  +      //TODO: this is not cluster safe!!!!!
         return Integer.toString( uniqueId.incrementAndGet() );
      }
   }
  
  
  



More information about the jboss-cvs-commits mailing list