You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ga...@apache.org on 2004/11/05 01:12:22 UTC

cvs commit: ws-axis/java/src/org/apache/axis/components/uuid FastUUIDGen.java

gawor       2004/11/04 16:12:22

  Modified:    java/src/org/apache/axis/components/uuid FastUUIDGen.java
  Log:
  clean up
  
  Revision  Changes    Path
  1.2       +0 -13     ws-axis/java/src/org/apache/axis/components/uuid/FastUUIDGen.java
  
  Index: FastUUIDGen.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/components/uuid/FastUUIDGen.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FastUUIDGen.java	4 Nov 2004 21:05:07 -0000	1.1
  +++ FastUUIDGen.java	5 Nov 2004 00:12:22 -0000	1.2
  @@ -129,17 +129,4 @@
           return bitString;
       }
   
  -    public static void main(String [] args) throws Exception {
  -        String current = null;
  -        String prev = null;
  -        
  -        FastUUIDGen g = new FastUUIDGen();
  -        for (int i=0;i<1000;i++) {
  -            current = g.nextUUID();
  -            if (current.equals(prev)) {
  -                throw new Exception(current + " " + prev);
  -            }
  -            prev = current;
  -        }
  -    }
   }