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 2018/10/16 12:14:16 UTC

ignite git commit: IGNITE-9234 fixed javadocs - Fixes #4548.

Repository: ignite
Updated Branches:
  refs/heads/master 97b93b84c -> 15a46c0db


IGNITE-9234 fixed javadocs - Fixes #4548.

Signed-off-by: Alexey Kuznetsov <ak...@apache.org>


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

Branch: refs/heads/master
Commit: 15a46c0dbdca8fb967dfc608763902882804a47c
Parents: 97b93b8
Author: oleg-ostanin <oo...@gridagin.com>
Authored: Tue Oct 16 19:13:47 2018 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Tue Oct 16 19:13:47 2018 +0700

----------------------------------------------------------------------
 modules/core/src/main/java/org/apache/ignite/Ignite.java         | 3 ---
 .../java/org/apache/ignite/configuration/CacheConfiguration.java | 4 +---
 2 files changed, 1 insertion(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/15a46c0d/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 4e05463..8d01bf0 100644
--- a/modules/core/src/main/java/org/apache/ignite/Ignite.java
+++ b/modules/core/src/main/java/org/apache/ignite/Ignite.java
@@ -386,9 +386,6 @@ public interface Ignite extends AutoCloseable {
     /**
      * Gets the collection of names of currently available caches.
      *
-     * Collection may contain {@code null} as a value for a cache name. Refer to {@link CacheConfiguration#getName()}
-     * for more info.
-     *
      * @return Collection of names of currently available caches or an empty collection if no caches are available.
      */
     public Collection<String> cacheNames();

http://git-wip-us.apache.org/repos/asf/ignite/blob/15a46c0d/modules/core/src/main/java/org/apache/ignite/configuration/CacheConfiguration.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/configuration/CacheConfiguration.java b/modules/core/src/main/java/org/apache/ignite/configuration/CacheConfiguration.java
index 795fcfd..35978e7 100644
--- a/modules/core/src/main/java/org/apache/ignite/configuration/CacheConfiguration.java
+++ b/modules/core/src/main/java/org/apache/ignite/configuration/CacheConfiguration.java
@@ -523,9 +523,7 @@ public class CacheConfiguration<K, V> extends MutableConfiguration<K, V> {
     }
 
     /**
-     * Cache name or {@code null} if not provided, then this will be considered a default
-     * cache which can be accessed via {@link Ignite#cache(String)} method. Otherwise, if name
-     * is provided, the cache will be accessed via {@link Ignite#cache(String)} method.
+     * Cache name. The cache will be accessed via {@link Ignite#cache(String)} method.
      *
      * @return Cache name.
      */