You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by nt...@apache.org on 2015/07/24 14:50:48 UTC

[07/30] incubator-ignite git commit: Removed @Nullable annotation

Removed @Nullable annotation


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/bce894fd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/bce894fd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/bce894fd

Branch: refs/heads/master
Commit: bce894fdf0886bde29cdc9502ecf2e95aebe8dd8
Parents: 2650845
Author: Valentin Kulichenko <vk...@gridgain.com>
Authored: Tue Jul 21 13:06:17 2015 -0700
Committer: Valentin Kulichenko <vk...@gridgain.com>
Committed: Tue Jul 21 13:06:17 2015 -0700

----------------------------------------------------------------------
 modules/core/src/main/java/org/apache/ignite/Ignite.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/bce894fd/modules/core/src/main/java/org/apache/ignite/Ignite.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/Ignite.java b/modules/core/src/main/java/org/apache/ignite/Ignite.java
index 7103b1b..209946b 100644
--- a/modules/core/src/main/java/org/apache/ignite/Ignite.java
+++ b/modules/core/src/main/java/org/apache/ignite/Ignite.java
@@ -308,7 +308,7 @@ public interface Ignite extends AutoCloseable {
      * @param name Cache name.
      * @return Instance of the cache for the specified name.
      */
-    @Nullable public <K, V> IgniteCache<K, V> cache(@Nullable String name);
+    public <K, V> IgniteCache<K, V> cache(@Nullable String name);
 
     /**
      * Gets grid transactions facade.