Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 19F811766A for ; Thu, 5 Mar 2015 01:19:22 +0000 (UTC) Received: (qmail 92761 invoked by uid 500); 5 Mar 2015 01:19:00 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 92727 invoked by uid 500); 5 Mar 2015 01:19:00 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 92718 invoked by uid 99); 5 Mar 2015 01:18:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Mar 2015 01:18:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 05 Mar 2015 01:18:37 +0000 Received: (qmail 90742 invoked by uid 99); 5 Mar 2015 01:18:34 -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; Thu, 05 Mar 2015 01:18:34 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A05D2E0E1F; Thu, 5 Mar 2015 01:18:34 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: anovikov@apache.org To: commits@ignite.incubator.apache.org Date: Thu, 05 Mar 2015 01:18:38 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [05/14] incubator-ignite git commit: # sprint-2 Fixed typo. X-Virus-Checked: Checked by ClamAV on apache.org # sprint-2 Fixed typo. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/5d2a7c6c Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/5d2a7c6c Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/5d2a7c6c Branch: refs/heads/ignite-185 Commit: 5d2a7c6ca6dac1d64d1efd4196e5130a117c6ca3 Parents: 4dd565e Author: AKuznetsov Authored: Wed Mar 4 17:16:01 2015 +0700 Committer: AKuznetsov Committed: Wed Mar 4 17:16:01 2015 +0700 ---------------------------------------------------------------------- .../apache/ignite/visor/commands/cache/VisorCacheCommand.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/5d2a7c6c/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/cache/VisorCacheCommand.scala ---------------------------------------------------------------------- diff --git a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/cache/VisorCacheCommand.scala b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/cache/VisorCacheCommand.scala index c39e946..8a2f6e0 100644 --- a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/cache/VisorCacheCommand.scala +++ b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/cache/VisorCacheCommand.scala @@ -842,8 +842,8 @@ object VisorCacheCommand { cacheT += ("Cache Interceptor", safe(cfg.interceptor())) cacheT += ("Store Enabled", bool2Str(storeCfg.enabled())) - cacheT += ("Store Сlass", safe(storeCfg.store())) - cacheT += ("Store Factory Сlass", storeCfg.storeFactory()) + cacheT += ("Store Class", safe(storeCfg.store())) + cacheT += ("Store Factory Class", storeCfg.storeFactory()) cacheT += ("Store Read Through", bool2Str(storeCfg.readThrough())) cacheT += ("Store Write Through", bool2Str(storeCfg.writeThrough()))