Repository: incubator-ignite Updated Branches: refs/heads/ignite-164v2 86ab8e207 -> bfc08d5e5
#ignite-164: Small fix in comments. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/bfc08d5e Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/bfc08d5e Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/bfc08d5e Branch: refs/heads/ignite-164v2 Commit: bfc08d5e5800ebfe4f4da085b23703b10c83ca50 Parents: 86ab8e2 Author: ivasilinets <[email protected]> Authored: Thu Feb 5 12:31:04 2015 +0300 Committer: ivasilinets <[email protected]> Committed: Thu Feb 5 12:31:04 2015 +0300 ---------------------------------------------------------------------- .../core/src/main/java/org/apache/ignite/cluster/ClusterNode.java | 2 +- .../core/src/main/java/org/apache/ignite/compute/ComputeJob.java | 2 +- .../java/org/apache/ignite/compute/gridify/GridifySetToValue.java | 2 +- .../main/java/org/apache/ignite/internal/util/lang/GridFunc.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/bfc08d5e/modules/core/src/main/java/org/apache/ignite/cluster/ClusterNode.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/cluster/ClusterNode.java b/modules/core/src/main/java/org/apache/ignite/cluster/ClusterNode.java index 2370c41..75bdc67 100644 --- a/modules/core/src/main/java/org/apache/ignite/cluster/ClusterNode.java +++ b/modules/core/src/main/java/org/apache/ignite/cluster/ClusterNode.java @@ -178,7 +178,7 @@ public interface ClusterNode { * <p> * If {@link org.apache.ignite.configuration.IgniteConfiguration#getLocalHost()} value isn't {@code null} node will try to use that * address for all communications and returned collection will contain only that address. - * If it is {@code null} then local wildcard address will be used, and Ignition + * If it is {@code null} then local wildcard address will be used, and Ignite * will make the best effort to supply all addresses of that node in returned collection. * * @return Collection of addresses. http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/bfc08d5e/modules/core/src/main/java/org/apache/ignite/compute/ComputeJob.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/compute/ComputeJob.java b/modules/core/src/main/java/org/apache/ignite/compute/ComputeJob.java index 1b05f18..f4285de 100644 --- a/modules/core/src/main/java/org/apache/ignite/compute/ComputeJob.java +++ b/modules/core/src/main/java/org/apache/ignite/compute/ComputeJob.java @@ -53,7 +53,7 @@ import java.util.*; * Job will be rejected. In this case the {@link ComputeJobResult} passed into * {@link ComputeTask#result(ComputeJobResult, List)} method will contain * {@link ComputeExecutionRejectedException} exception. If you are using any - * of the task adapters shipped with Ignition, then job will be failed + * of the task adapters shipped with Ignite, then job will be failed * over automatically for execution on another node. * </li> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/bfc08d5e/modules/core/src/main/java/org/apache/ignite/compute/gridify/GridifySetToValue.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/compute/gridify/GridifySetToValue.java b/modules/core/src/main/java/org/apache/ignite/compute/gridify/GridifySetToValue.java index 5927bd5..1cb41cf 100644 --- a/modules/core/src/main/java/org/apache/ignite/compute/gridify/GridifySetToValue.java +++ b/modules/core/src/main/java/org/apache/ignite/compute/gridify/GridifySetToValue.java @@ -175,7 +175,7 @@ public @interface GridifySetToValue { * <p> * This value should be greater than zero and can be less, equal or greater than {@link #threshold()} * value. In most cases, however, the optimal value for the split size is the {@link #threshold()} value. - * For example, if input collection size is 100, number of nodes 10 and split size is set to 5 - Ignition + * For example, if input collection size is 100, number of nodes 10 and split size is set to 5 - Ignite * will submit 2 sub-collections of 5 elements each to each node (provided in order by load * balancing SPI). * <p> http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/bfc08d5e/modules/core/src/main/java/org/apache/ignite/internal/util/lang/GridFunc.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/util/lang/GridFunc.java b/modules/core/src/main/java/org/apache/ignite/internal/util/lang/GridFunc.java index 38ba7fe..352cc02 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/util/lang/GridFunc.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/util/lang/GridFunc.java @@ -7486,7 +7486,7 @@ public class GridFunc { /** * Compares two {@link org.apache.ignite.cluster.ClusterNode} instances for equality. * <p> - * Since introduction of {@link org.apache.ignite.cluster.ClusterNode} in Ignite 3.0 the semantic of equality between + * Since introduction of {@link org.apache.ignite.cluster.ClusterNode} in Apache Ignite 3.0 the semantic of equality between * grid nodes has changed. Since rich node wraps thin node instance and in the same time * implements {@link org.apache.ignite.cluster.ClusterNode} interface, the proper semantic of comparing two grid node is * to ignore their runtime types and compare only by their IDs. This method implements this logic.
