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 666E817AA3 for ; Mon, 8 Jun 2015 08:32:52 +0000 (UTC) Received: (qmail 41469 invoked by uid 500); 8 Jun 2015 08:32:52 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 41439 invoked by uid 500); 8 Jun 2015 08:32:52 -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 41430 invoked by uid 99); 8 Jun 2015 08:32:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jun 2015 08:32:52 +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; Mon, 08 Jun 2015 08:30:41 +0000 Received: (qmail 41355 invoked by uid 99); 8 Jun 2015 08:32:29 -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, 08 Jun 2015 08:32:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 00B84DFAFF; Mon, 8 Jun 2015 08:32:28 +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: <71358b3650634a8aa68f18f2aea06b55@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: incubator-ignite git commit: # ignite-sprint-5 javadoc warning Date: Mon, 8 Jun 2015 08:32:29 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-ignite Updated Branches: refs/heads/ignite-sprint-5 59db4a5e0 -> a5b5ec703 # ignite-sprint-5 javadoc 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/a5b5ec70 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/a5b5ec70 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/a5b5ec70 Branch: refs/heads/ignite-sprint-5 Commit: a5b5ec703dbcb593a945c8eb1d37e1261e55e834 Parents: 59db4a5 Author: sboikov Authored: Mon Jun 8 11:32:14 2015 +0300 Committer: sboikov Committed: Mon Jun 8 11:32:14 2015 +0300 ---------------------------------------------------------------------- modules/core/src/main/java/org/apache/ignite/IgniteCache.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/a5b5ec70/modules/core/src/main/java/org/apache/ignite/IgniteCache.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/IgniteCache.java b/modules/core/src/main/java/org/apache/ignite/IgniteCache.java index 07f4f3f..a54adc9 100644 --- a/modules/core/src/main/java/org/apache/ignite/IgniteCache.java +++ b/modules/core/src/main/java/org/apache/ignite/IgniteCache.java @@ -325,7 +325,12 @@ public interface IgniteCache extends javax.cache.Cache, IgniteAsyncS @IgniteAsyncSupported @Override public boolean containsKey(K key); - /** {@inheritDoc} */ + /** + * Determines if the {@link Cache} contains entries for the specified keys. + * + * @param keys Key whose presence in this cache is to be tested. + * @return {@code True} if this cache contains a mapping for the specified keys. + */ @IgniteAsyncSupported public boolean containsKeys(Set keys);