You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2015/11/19 13:39:20 UTC

[2/3] ignite git commit: IGNITE-1941: Removed TODOs. Let's keep these methods because they are convenient.

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-1753-1282
Commit: 5ea0625b47962a12da0aaa5357df514a7aad83c5
Parents: 94afe3e
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Thu Nov 19 13:49:40 2015 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
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> 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);