You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by si...@apache.org on 2012/06/11 09:06:11 UTC

svn commit: r1348724 - in /lucene/dev/branches/branch_4x: ./ lucene/ lucene/core/ lucene/core/src/test/org/apache/lucene/index/TestDocumentsWriterStallControl.java

Author: simonw
Date: Mon Jun 11 07:06:11 2012
New Revision: 1348724

URL: http://svn.apache.org/viewvc?rev=1348724&view=rev
Log:
fix typo - thanks dawid

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/lucene/   (props changed)
    lucene/dev/branches/branch_4x/lucene/core/   (props changed)
    lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/TestDocumentsWriterStallControl.java

Modified: lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/TestDocumentsWriterStallControl.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/TestDocumentsWriterStallControl.java?rev=1348724&r1=1348723&r2=1348724&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/TestDocumentsWriterStallControl.java (original)
+++ lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/TestDocumentsWriterStallControl.java Mon Jun 11 07:06:11 2012
@@ -127,7 +127,7 @@ public class TestDocumentsWriterStallCon
     int numStallers = atLeast(1);
     int numReleasers = atLeast(1);
     int numWaiters = atLeast(1);
-    final Synchonizer sync = new Synchonizer(numStallers + numReleasers, numStallers + numReleasers+numWaiters);
+    final Synchronizer sync = new Synchronizer(numStallers + numReleasers, numStallers + numReleasers+numWaiters);
     Thread[] threads = new Thread[numReleasers + numStallers + numWaiters];
     List<Throwable> exceptions =  Collections.synchronizedList(new ArrayList<Throwable>());
     for (int i = 0; i < numReleasers; i++) {
@@ -229,14 +229,14 @@ public class TestDocumentsWriterStallCon
   }
 
   public static class Waiter extends Thread {
-    private Synchonizer sync;
+    private Synchronizer sync;
     private DocumentsWriterStallControl ctrl;
     private AtomicBoolean checkPoint;
     private AtomicBoolean stop;
     private List<Throwable> exceptions;
     
     public Waiter(AtomicBoolean stop, AtomicBoolean checkPoint,
-        DocumentsWriterStallControl ctrl, Synchonizer sync,
+        DocumentsWriterStallControl ctrl, Synchronizer sync,
         List<Throwable> exceptions) {
       super("waiter");
       this.stop = stop;
@@ -268,7 +268,7 @@ public class TestDocumentsWriterStallCon
   
   public static class Updater extends Thread {
     
-    private Synchonizer sync;
+    private Synchronizer sync;
     private DocumentsWriterStallControl ctrl;
     private AtomicBoolean checkPoint;
     private AtomicBoolean stop;
@@ -276,7 +276,7 @@ public class TestDocumentsWriterStallCon
     private List<Throwable> exceptions;
     
     public Updater(AtomicBoolean stop, AtomicBoolean checkPoint,
-        DocumentsWriterStallControl ctrl, Synchonizer sync,
+        DocumentsWriterStallControl ctrl, Synchronizer sync,
         boolean release, List<Throwable> exceptions) {
       super("updater");
       this.stop = stop;
@@ -400,12 +400,12 @@ public class TestDocumentsWriterStallCon
     
   }
   
-  private static final class Synchonizer {
+  private static final class Synchronizer {
     volatile CountDownLatch waiter;
     volatile CountDownLatch updateJoin;
     volatile CountDownLatch leftCheckpoint;
     
-    public Synchonizer(int numUpdater, int numThreads) {
+    public Synchronizer(int numUpdater, int numThreads) {
       reset(numUpdater, numThreads);
     }