Repository: ignite Updated Branches: refs/heads/ignite-1093-3 a34a408bf -> b4cf8eba0
1093 Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/b4cf8eba Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/b4cf8eba Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/b4cf8eba Branch: refs/heads/ignite-1093-3 Commit: b4cf8eba068b10e1da0762bd1d31727543e6b150 Parents: a34a408 Author: Anton Vinogradov <[email protected]> Authored: Tue Oct 27 13:00:42 2015 +0300 Committer: Anton Vinogradov <[email protected]> Committed: Tue Oct 27 13:00:42 2015 +0300 ---------------------------------------------------------------------- .../org/apache/ignite/configuration/CacheConfiguration.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/b4cf8eba/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 4012792..6cd07fa 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 @@ -342,7 +342,9 @@ public class CacheConfiguration<K, V> extends MutableConfiguration<K, V> { /* No-op. */ } - /** Cache name. */ + /** + * @param name Cache name. + */ public CacheConfiguration(String name) { this.name = name; } @@ -1778,7 +1780,7 @@ public class CacheConfiguration<K, V> extends MutableConfiguration<K, V> { } /** - * To gain better rebalancing performance supplier node can provide mode than one batch at start and provide + * To gain better rebalancing performance supplier node can provide more than one batch at start and provide * one new to each next demand request. * * Gets number of batches generated by supply node at rebalancing start. @@ -1790,7 +1792,7 @@ public class CacheConfiguration<K, V> extends MutableConfiguration<K, V> { } /** - * To gain better rebalancing performance supplier node can provide mode than one batch at start and provide + * To gain better rebalancing performance supplier node can provide more than one batch at start and provide * one new to each next demand request. * * Sets number of batches generated by supply node at rebalancing start.
