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 2015/08/31 16:10:58 UTC

[05/18] ignite git commit: MInors.

MInors.


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

Branch: refs/heads/ignite-843
Commit: a457ab13471671a3177718a80aed660c837fcfb7
Parents: 0995037
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Mon Aug 31 11:51:02 2015 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Mon Aug 31 11:51:02 2015 +0300

----------------------------------------------------------------------
 .../internal/processors/platform/cache/PlatformCache.java    | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/a457ab13/modules/platform/src/main/java/org/apache/ignite/internal/processors/platform/cache/PlatformCache.java
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/java/org/apache/ignite/internal/processors/platform/cache/PlatformCache.java b/modules/platform/src/main/java/org/apache/ignite/internal/processors/platform/cache/PlatformCache.java
index 0347d4d..e0cbcbe 100644
--- a/modules/platform/src/main/java/org/apache/ignite/internal/processors/platform/cache/PlatformCache.java
+++ b/modules/platform/src/main/java/org/apache/ignite/internal/processors/platform/cache/PlatformCache.java
@@ -680,7 +680,7 @@ public class PlatformCache extends PlatformAbstractTarget {
      * {@link javax.cache.integration.CacheWriter}s.
      *
      * @throws IllegalStateException if the cache is closed.
-     * @throws javax.cache.CacheException        if there is a problem during the clear
+     * @throws javax.cache.CacheException if there is a problem during the clear
      */
     public void clear() throws IgniteCheckedException {
         cache.clear();
@@ -819,8 +819,7 @@ public class PlatformCache extends PlatformAbstractTarget {
     /**
      * Runs specified query.
      */
-    private PlatformQueryCursor runQuery(PortableRawReaderEx reader, Query qry)
-        throws IgniteCheckedException {
+    private PlatformQueryCursor runQuery(PortableRawReaderEx reader, Query qry) throws IgniteCheckedException {
 
         try {
             QueryCursorEx cursor = (QueryCursorEx) cache.query(qry);
@@ -852,8 +851,7 @@ public class PlatformCache extends PlatformAbstractTarget {
     /**
      * Reads the query of specified type.
      */
-    private Query readInitialQuery(PortableRawReaderEx reader)
-        throws IgniteCheckedException {
+    private Query readInitialQuery(PortableRawReaderEx reader) throws IgniteCheckedException {
         int typ = reader.readInt();
 
         switch (typ) {