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 E320F18CD8 for ; Thu, 30 Apr 2015 06:57:05 +0000 (UTC) Received: (qmail 40764 invoked by uid 500); 30 Apr 2015 06:57:05 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 40729 invoked by uid 500); 30 Apr 2015 06:57:05 -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 40688 invoked by uid 99); 30 Apr 2015 06:57:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Apr 2015 06:57:05 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [54.191.145.13] (HELO mx1-us-west.apache.org) (54.191.145.13) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Apr 2015 06:57:01 +0000 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with SMTP id B48FF272DC for ; Thu, 30 Apr 2015 06:56:35 +0000 (UTC) Received: (qmail 40226 invoked by uid 99); 30 Apr 2015 06:56:35 -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, 30 Apr 2015 06:56:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5C9B2E3A5A; Thu, 30 Apr 2015 06:56:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: vozerov@apache.org To: commits@ignite.incubator.apache.org Date: Thu, 30 Apr 2015 06:56:46 -0000 Message-Id: <17652aa504d74f9c8cc055b439115bd6@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [12/15] incubator-ignite git commit: # Removed marshaller warning X-Virus-Checked: Checked by ClamAV on apache.org # Removed marshaller warning Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/c8f7d387 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/c8f7d387 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/c8f7d387 Branch: refs/heads/ignite-sprint-5 Commit: c8f7d387e1c52fb11bc890009b1d94292a533508 Parents: 3344b09 Author: Valentin Kulichenko Authored: Wed Apr 29 11:50:31 2015 -0700 Committer: Valentin Kulichenko Committed: Wed Apr 29 11:50:31 2015 -0700 ---------------------------------------------------------------------- .../src/main/java/org/apache/ignite/internal/IgnitionEx.java | 5 ----- 1 file changed, 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/c8f7d387/modules/core/src/main/java/org/apache/ignite/internal/IgnitionEx.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/IgnitionEx.java b/modules/core/src/main/java/org/apache/ignite/internal/IgnitionEx.java index 9453791..8d88677 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/IgnitionEx.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/IgnitionEx.java @@ -1788,11 +1788,6 @@ public class IgnitionEx { else marsh = new OptimizedMarshaller(); } - else if (marsh instanceof OptimizedMarshaller && !U.isHotSpot()) { - U.warn(log, "Using OptimizedMarshaller on untested JVM (only Java HotSpot VMs were tested) - " + - "object serialization behavior could yield unexpected results.", - "Using GridOptimizedMarshaller on untested JVM."); - } myCfg.setMarshaller(marsh);