You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2002/06/29 23:40:20 UTC

cvs commit: jakarta-commons-sandbox/pattern/src/java/org/apache/commons/pattern/identifier IdentifierUtils.java

scolebourne    2002/06/29 14:40:20

  Modified:    pattern/src/java/org/apache/commons/pattern/identifier
                        IdentifierUtils.java
  Log:
  Change default factory
  
  Revision  Changes    Path
  1.2       +3 -3      jakarta-commons-sandbox/pattern/src/java/org/apache/commons/pattern/identifier/IdentifierUtils.java
  
  Index: IdentifierUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/pattern/src/java/org/apache/commons/pattern/identifier/IdentifierUtils.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IdentifierUtils.java	29 Jun 2002 18:42:17 -0000	1.1
  +++ IdentifierUtils.java	29 Jun 2002 21:40:20 -0000	1.2
  @@ -54,7 +54,7 @@
   package org.apache.commons.pattern.identifier;
   
   import org.apache.commons.pattern.factory.Factory;
  -import org.apache.commons.pattern.identifier.factory.IncrementingLongIdentifierFactory;
  +import org.apache.commons.pattern.identifier.factory.LongIncrementingIdentifierFactory;
   /**
    * <code>IdentifierUtils</code> provides reference implementations and utilities
    * for the Identifier and Identifiable pattern interfaces.
  @@ -67,7 +67,7 @@
       /**
        * JVM shared default identifier factory
        */
  -    public static Factory cDefault = new IncrementingLongIdentifierFactory(false);
  +    public static Factory cDefault = new LongIncrementingIdentifierFactory(false);
   
       /**
        * Restructive constructor
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>