You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by br...@apache.org on 2003/06/07 12:18:11 UTC

cvs commit: db-ojb/src/test/org/apache/ojb/broker PerformanceTest3.java

brj         2003/06/07 03:18:11

  Modified:    src/test/org/apache/ojb/broker PerformanceTest3.java
  Log:
  some style fixes
  
  Revision  Changes    Path
  1.7       +2 -2      db-ojb/src/test/org/apache/ojb/broker/PerformanceTest3.java
  
  Index: PerformanceTest3.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/test/org/apache/ojb/broker/PerformanceTest3.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- PerformanceTest3.java	31 Jan 2003 17:50:03 -0000	1.6
  +++ PerformanceTest3.java	7 Jun 2003 10:18:11 -0000	1.7
  @@ -35,7 +35,7 @@
       private static int iterationsPerThread = 1000;
       private static int concurrentThreads = 10;
       //used for client generated ids
  -    private static int id = 10001;
  +    private static int s_id = 10001;
       private static int whichTest = 3;
       private static boolean clientKeyGeneration = false;
   
  @@ -744,7 +744,7 @@
        */
       public synchronized static int getId()
       {
  -        return ++id;
  +        return ++s_id;
       }
   
       public int getArticleCount()