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 8178D189E1 for ; Sun, 22 Nov 2015 16:41:33 +0000 (UTC) Received: (qmail 77335 invoked by uid 500); 22 Nov 2015 16:41:33 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 77293 invoked by uid 500); 22 Nov 2015 16:41:33 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 77281 invoked by uid 99); 22 Nov 2015 16:41:33 -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; Sun, 22 Nov 2015 16:41:33 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3EE0DDFFB6; Sun, 22 Nov 2015 16:41:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Date: Sun, 22 Nov 2015 16:41:33 -0000 Message-Id: <06f2287f4f5b4870aba523bfc8518452@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/50] [abbrv] ignite git commit: IGNITE-1941: Removed TODOs. Let's keep these methods because they are convenient. Repository: ignite Updated Branches: refs/heads/ignite-single-op-get adb8ee4a1 -> 72f6ac484 IGNITE-1941: Removed TODOs. Let's keep these methods because they are convenient. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/5ea0625b Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/5ea0625b Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/5ea0625b Branch: refs/heads/ignite-single-op-get Commit: 5ea0625b47962a12da0aaa5357df514a7aad83c5 Parents: 94afe3e Author: vozerov-gridgain Authored: Thu Nov 19 13:49:40 2015 +0300 Committer: vozerov-gridgain Committed: Thu Nov 19 13:49:40 2015 +0300 ---------------------------------------------------------------------- .../src/main/java/org/apache/ignite/binary/BinaryObject.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/5ea0625b/modules/core/src/main/java/org/apache/ignite/binary/BinaryObject.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/binary/BinaryObject.java b/modules/core/src/main/java/org/apache/ignite/binary/BinaryObject.java index 9481618..f098c16 100644 --- a/modules/core/src/main/java/org/apache/ignite/binary/BinaryObject.java +++ b/modules/core/src/main/java/org/apache/ignite/binary/BinaryObject.java @@ -123,16 +123,14 @@ public interface BinaryObject extends Serializable, Cloneable { * @param fieldName Field name. * @return Field value. * @throws BinaryObjectException In case of any other error. - * TODO ignite-1282 remove. */ public F field(String fieldName) throws BinaryObjectException; /** - * Checks whether field is set. - ** TODO ignite-1282 remove. + * Checks whether field exists in the object. * * @param fieldName Field name. - * @return {@code true} if field is set. + * @return {@code True} if field exists. */ public boolean hasField(String fieldName);