You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by gc...@apache.org on 2014/10/17 02:21:38 UTC

svn commit: r1632453 - in /lucene/dev/branches/branch_5x/solr: ./ core/src/java/org/apache/solr/handler/ core/src/java/org/apache/solr/update/processor/ core/src/test/org/apache/solr/update/

Author: gchanan
Date: Fri Oct 17 00:21:38 2014
New Revision: 1632453

URL: http://svn.apache.org/r1632453
Log:
SOLR-6624: Spelling mistakes in the Java source

Modified:
    lucene/dev/branches/branch_5x/solr/CHANGES.txt
    lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/handler/SnapPuller.java
    lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/update/processor/RunUpdateProcessorFactory.java
    lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/update/DocumentBuilderTest.java

Modified: lucene/dev/branches/branch_5x/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/CHANGES.txt?rev=1632453&r1=1632452&r2=1632453&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/CHANGES.txt (original)
+++ lucene/dev/branches/branch_5x/solr/CHANGES.txt Fri Oct 17 00:21:38 2014
@@ -211,6 +211,8 @@ Bug Fixes
 
 * SOLR-6540 Fix NPE from strdist() func when doc value source does not exist in a doc (hossman)
 
+* SOLR-6624 Spelling mistakes in the Java source (Hrishikesh Gadre)
+
 * SOLR-6307: Atomic update remove does not work for int array or date array
   (Anurag Sharma , noble)
 

Modified: lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/handler/SnapPuller.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/handler/SnapPuller.java?rev=1632453&r1=1632452&r2=1632453&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/handler/SnapPuller.java (original)
+++ lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/handler/SnapPuller.java Fri Oct 17 00:21:38 2014
@@ -1228,7 +1228,7 @@ public class SnapPuller {
           //read the size of the packet
           int packetSize = readInt(intbytes);
           if (packetSize <= 0) {
-            LOG.warn("No content recieved for file: " + currentFile);
+            LOG.warn("No content received for file: " + currentFile);
             return NO_CONTENT;
           }
           if (buf.length < packetSize)
@@ -1496,7 +1496,7 @@ public class SnapPuller {
           //read the size of the packet
           int packetSize = readInt(intbytes);
           if (packetSize <= 0) {
-            LOG.warn("No content recieved for file: " + currentFile);
+            LOG.warn("No content received for file: " + currentFile);
             return NO_CONTENT;
           }
           if (buf.length < packetSize)

Modified: lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/update/processor/RunUpdateProcessorFactory.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/update/processor/RunUpdateProcessorFactory.java?rev=1632453&r1=1632452&r2=1632453&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/update/processor/RunUpdateProcessorFactory.java (original)
+++ lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/update/processor/RunUpdateProcessorFactory.java Fri Oct 17 00:21:38 2014
@@ -63,7 +63,7 @@ class RunUpdateProcessor extends UpdateR
     if (DistributedUpdateProcessor.isAtomicUpdate(cmd)) {
       throw new SolrException
         (SolrException.ErrorCode.BAD_REQUEST,
-         "RunUpdateProcessor has recieved an AddUpdateCommand containing a document that appears to still contain Atomic document update operations, most likely because DistributedUpdateProcessorFactory was explicitly disabled from this updateRequestProcessorChain");
+         "RunUpdateProcessor has received an AddUpdateCommand containing a document that appears to still contain Atomic document update operations, most likely because DistributedUpdateProcessorFactory was explicitly disabled from this updateRequestProcessorChain");
     }
 
     updateHandler.addDoc(cmd);

Modified: lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/update/DocumentBuilderTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/update/DocumentBuilderTest.java?rev=1632453&r1=1632452&r2=1632453&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/update/DocumentBuilderTest.java (original)
+++ lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/update/DocumentBuilderTest.java Fri Oct 17 00:21:38 2014
@@ -306,7 +306,7 @@ public class DocumentBuilderTest extends
     assertEquals(1.0F,                    outText[3].boost(), 0.0F);
     assertEquals(1.0F,                    outText[4].boost(), 0.0F);
     
-    // copyField dest with no norms should not have recieved any boost
+    // copyField dest with no norms should not have received any boost
     assertEquals(1.0F, outNoNorms[0].boost(), 0.0F);
     assertEquals(1.0F, outNoNorms[1].boost(), 0.0F);