#ignite-990: Remove Nullable annotation from getAllOutTx.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/32221755 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/32221755 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/32221755 Branch: refs/heads/ignite-990 Commit: 322217554a52ddcd872d3ed10ea5ef6a756153df Parents: 746cee2 Author: ivasilinets <ivasilin...@gridgain.com> Authored: Wed Jun 3 17:34:24 2015 +0300 Committer: ivasilinets <ivasilin...@gridgain.com> Committed: Wed Jun 3 17:34:24 2015 +0300 ---------------------------------------------------------------------- modules/core/src/main/java/org/apache/ignite/IgniteCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/32221755/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 ed03f9b..2578a7c 100644 --- a/modules/core/src/main/java/org/apache/ignite/IgniteCache.java +++ b/modules/core/src/main/java/org/apache/ignite/IgniteCache.java @@ -320,7 +320,7 @@ public interface IgniteCache<K, V> extends javax.cache.Cache<K, V>, IgniteAsyncS * @throws IgniteCheckedException If failed. */ @IgniteAsyncSupported - @Nullable public Map<K, V> getAllOutTx(Set<? extends K> keys) throws IgniteCheckedException; + public Map<K, V> getAllOutTx(Set<? extends K> keys) throws IgniteCheckedException; /** {@inheritDoc} */ @IgniteAsyncSupported