Return-Path: X-Original-To: apmail-lucene-commits-archive@www.apache.org Delivered-To: apmail-lucene-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 05A231027F for ; Fri, 17 Oct 2014 00:22:04 +0000 (UTC) Received: (qmail 93464 invoked by uid 500); 17 Oct 2014 00:22:03 -0000 Mailing-List: contact commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list commits@lucene.apache.org Received: (qmail 93455 invoked by uid 99); 17 Oct 2014 00:22:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Oct 2014 00:22:03 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Oct 2014 00:21:40 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 33C1623889CB; Fri, 17 Oct 2014 00:21:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: 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/ Date: Fri, 17 Oct 2014 00:21:38 -0000 To: commits@lucene.apache.org From: gchanan@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141017002139.33C1623889CB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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);