Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B0746200C8B for ; Mon, 22 May 2017 20:29:05 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id AD97D160BF1; Mon, 22 May 2017 18:29:05 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 068D4160BDD for ; Mon, 22 May 2017 20:29:04 +0200 (CEST) Received: (qmail 65131 invoked by uid 500); 22 May 2017 18:29:01 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 62689 invoked by uid 99); 22 May 2017 18:28:59 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 May 2017 18:28:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B4315ED4A1; Mon, 22 May 2017 18:28:58 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: udo@apache.org To: commits@geode.apache.org Date: Mon, 22 May 2017 18:29:39 -0000 Message-Id: <50f6fb256287438898e8e22b9e472271@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [43/69] [abbrv] geode git commit: GEODE-2934: fix typos archived-at: Mon, 22 May 2017 18:29:05 -0000 GEODE-2934: fix typos Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/52dadee3 Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/52dadee3 Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/52dadee3 Branch: refs/heads/feature/GEODE-2580 Commit: 52dadee32075e66cfc54de15611d3c0e3a816891 Parents: 9e5c75c Author: Kirk Lund Authored: Wed May 17 10:46:07 2017 -0700 Committer: Kirk Lund Committed: Wed May 17 10:46:07 2017 -0700 ---------------------------------------------------------------------- .../apache/geode/codeAnalysis/AnalyzeSerializablesJUnitTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/52dadee3/geode-core/src/test/java/org/apache/geode/codeAnalysis/AnalyzeSerializablesJUnitTest.java ---------------------------------------------------------------------- diff --git a/geode-core/src/test/java/org/apache/geode/codeAnalysis/AnalyzeSerializablesJUnitTest.java b/geode-core/src/test/java/org/apache/geode/codeAnalysis/AnalyzeSerializablesJUnitTest.java index ee61a85..dc73f04 100644 --- a/geode-core/src/test/java/org/apache/geode/codeAnalysis/AnalyzeSerializablesJUnitTest.java +++ b/geode-core/src/test/java/org/apache/geode/codeAnalysis/AnalyzeSerializablesJUnitTest.java @@ -114,7 +114,7 @@ public class AnalyzeSerializablesJUnitTest { diffSortedClassesAndMethods(this.expectedDataSerializables, actualDataSerializables); if (diff.length() > 0) { System.out.println( - "++++++++++++++++++++++++++++++testDataSerializables found discrepencies++++++++++++++++++++++++++++++++++++"); + "++++++++++++++++++++++++++++++testDataSerializables found discrepancies++++++++++++++++++++++++++++++++++++"); System.out.println(diff); fail( diff + "\n\nIf the class is not persisted or sent over the wire add it to the excludedClasses.txt file in the " @@ -134,7 +134,7 @@ public class AnalyzeSerializablesJUnitTest { String diff = diffSortedClassesAndVariables(this.expectedSerializables, actualSerializables); if (diff.length() > 0) { System.out.println( - "++++++++++++++++++++++++++++++testSerializables found discrepencies++++++++++++++++++++++++++++++++++++"); + "++++++++++++++++++++++++++++++testSerializables found discrepancies++++++++++++++++++++++++++++++++++++"); System.out.println(diff); fail( diff + "\n\nIf the class is not persisted or sent over the wire add it to the excludedClasses.txt file in the "