# ignite-6
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/8a76806f Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/8a76806f Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/8a76806f Branch: refs/heads/ignite-6 Commit: 8a76806faaafd382e409e9d629818767df6dcd57 Parents: ce32594 Author: sboikov <sboi...@gridgain.com> Authored: Wed Feb 4 15:28:03 2015 +0300 Committer: sboikov <sboi...@gridgain.com> Committed: Wed Feb 4 15:28:03 2015 +0300 ---------------------------------------------------------------------- .../datagrid/datastructures/IgniteQueueExample.java | 2 +- .../apache/ignite/examples/CacheExamplesSelfTest.java | 14 +++++++------- .../ignite/testframework/junits/IgniteMock.java | 3 --- 3 files changed, 8 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/8a76806f/examples/src/main/java/org/apache/ignite/examples/datagrid/datastructures/IgniteQueueExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/datagrid/datastructures/IgniteQueueExample.java b/examples/src/main/java/org/apache/ignite/examples/datagrid/datastructures/IgniteQueueExample.java index 83411ec..bcae84d 100644 --- a/examples/src/main/java/org/apache/ignite/examples/datagrid/datastructures/IgniteQueueExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/datagrid/datastructures/IgniteQueueExample.java @@ -53,7 +53,7 @@ public class IgniteQueueExample { public static void main(String[] args) throws Exception { try (Ignite ignite = Ignition.start("examples/config/example-cache.xml")) { System.out.println(); - System.out.println(">>> Cache queue example started."); + System.out.println(">>> Ignite queue example started."); // Make queue name. String queueName = UUID.randomUUID().toString(); http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/8a76806f/examples/src/test/java/org/apache/ignite/examples/CacheExamplesSelfTest.java ---------------------------------------------------------------------- diff --git a/examples/src/test/java/org/apache/ignite/examples/CacheExamplesSelfTest.java b/examples/src/test/java/org/apache/ignite/examples/CacheExamplesSelfTest.java index c34b712..11da88a 100644 --- a/examples/src/test/java/org/apache/ignite/examples/CacheExamplesSelfTest.java +++ b/examples/src/test/java/org/apache/ignite/examples/CacheExamplesSelfTest.java @@ -38,49 +38,49 @@ public class CacheExamplesSelfTest extends GridAbstractExamplesTest { * @throws Exception If failed. */ public void testCacheAtomicLongExample() throws Exception { - CacheAtomicLongExample.main(EMPTY_ARGS); + IgniteAtomicLongExample.main(EMPTY_ARGS); } /** * @throws Exception If failed. */ public void testCacheAtomicReferenceExample() throws Exception { - CacheAtomicReferenceExample.main(EMPTY_ARGS); + IgniteAtomicReferenceExample.main(EMPTY_ARGS); } /** * @throws Exception If failed. */ public void testCacheAtomicSequenceExample() throws Exception { - CacheAtomicSequenceExample.main(EMPTY_ARGS); + IgniteAtomicSequenceExample.main(EMPTY_ARGS); } /** * @throws Exception If failed. */ public void testCacheAtomicStampedExample() throws Exception { - CacheAtomicStampedExample.main(EMPTY_ARGS); + IgniteAtomicStampedExample.main(EMPTY_ARGS); } /** * @throws Exception If failed. */ public void testCacheCountDownLatchExample() throws Exception { - CacheCountDownLatchExample.main(EMPTY_ARGS); + IgniteCountDownLatchExample.main(EMPTY_ARGS); } /** * @throws Exception If failed. */ public void testCacheQueueExample() throws Exception { - CacheQueueExample.main(EMPTY_ARGS); + IgniteQueueExample.main(EMPTY_ARGS); } /** * @throws Exception If failed. */ public void testCacheSetExample() throws Exception { - CacheSetExample.main(EMPTY_ARGS); + IgniteSetExample.main(EMPTY_ARGS); } /** http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/8a76806f/modules/core/src/test/java/org/apache/ignite/testframework/junits/IgniteMock.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/testframework/junits/IgniteMock.java b/modules/core/src/test/java/org/apache/ignite/testframework/junits/IgniteMock.java index 19b959d..ef2e594 100644 --- a/modules/core/src/test/java/org/apache/ignite/testframework/junits/IgniteMock.java +++ b/modules/core/src/test/java/org/apache/ignite/testframework/junits/IgniteMock.java @@ -276,9 +276,6 @@ public class IgniteMock implements Ignite { } /** {@inheritDoc} */ - @Override public void close() throws IgniteCheckedException {} - - /** {@inheritDoc} */ @Override public <K> CacheAffinity<K> affinity(String cacheName) { return null; }