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 3C22917B4F for ; Thu, 9 Apr 2015 08:48:39 +0000 (UTC) Received: (qmail 54586 invoked by uid 500); 9 Apr 2015 08:48:26 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 54558 invoked by uid 500); 9 Apr 2015 08:48:26 -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 54549 invoked by uid 99); 9 Apr 2015 08:48:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Apr 2015 08:48:26 +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, 09 Apr 2015 08:48:25 +0000 Received: (qmail 54418 invoked by uid 99); 9 Apr 2015 08:48:05 -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, 09 Apr 2015 08:48:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CA982DFF67; Thu, 9 Apr 2015 08:48:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-ignite git commit: # ignite-sprint-3 fixed compilation Date: Thu, 9 Apr 2015 08:48:04 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-ignite Updated Branches: refs/heads/ignite-sprint-3 6e84a3b3e -> bb0ce4b35 # ignite-sprint-3 fixed compilation Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/bb0ce4b3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/bb0ce4b3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/bb0ce4b3 Branch: refs/heads/ignite-sprint-3 Commit: bb0ce4b3567fa60a4c2097e4128ccaa0ef9e0a92 Parents: 6e84a3b Author: sboikov Authored: Thu Apr 9 11:47:56 2015 +0300 Committer: sboikov Committed: Thu Apr 9 11:47:56 2015 +0300 ---------------------------------------------------------------------- .../apache/ignite/examples/datagrid/CacheTransactionExample.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/bb0ce4b3/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheTransactionExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheTransactionExample.java b/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheTransactionExample.java index 67f6376..797543a 100644 --- a/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheTransactionExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheTransactionExample.java @@ -56,7 +56,7 @@ public class CacheTransactionExample { cfg.setAtomicityMode(CacheAtomicityMode.TRANSACTIONAL); - try (IgniteCache cache = ignite.getOrCreateCache(cfg, new NearCacheConfiguration<>())) { + try (IgniteCache cache = ignite.getOrCreateCache(cfg, new NearCacheConfiguration())) { // Initialize. cache.put(1, new Account(1, 100)); cache.put(2, new Account(1, 200));