Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-26 0693fa99f -> 7a8cde7a9


# ignite-26


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

Branch: refs/heads/ignite-26
Commit: 7a8cde7a971344364a45c1f3d4407790719eca39
Parents: 0693fa9
Author: sboikov <sboi...@gridgain.com>
Authored: Mon Feb 2 15:27:23 2015 +0300
Committer: sboikov <sboi...@gridgain.com>
Committed: Mon Feb 2 15:27:23 2015 +0300

----------------------------------------------------------------------
 .../org/apache/ignite/fs/hadoop/v1/GridGgfsHadoopFileSystem.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7a8cde7a/modules/hadoop/src/main/java/org/apache/ignite/fs/hadoop/v1/GridGgfsHadoopFileSystem.java
----------------------------------------------------------------------
diff --git 
a/modules/hadoop/src/main/java/org/apache/ignite/fs/hadoop/v1/GridGgfsHadoopFileSystem.java
 
b/modules/hadoop/src/main/java/org/apache/ignite/fs/hadoop/v1/GridGgfsHadoopFileSystem.java
index 68f86db..a47abd1 100644
--- 
a/modules/hadoop/src/main/java/org/apache/ignite/fs/hadoop/v1/GridGgfsHadoopFileSystem.java
+++ 
b/modules/hadoop/src/main/java/org/apache/ignite/fs/hadoop/v1/GridGgfsHadoopFileSystem.java
@@ -775,7 +775,7 @@ public class GridGgfsHadoopFileSystem extends FileSystem {
         catch (IOException e) {
             // Intentionally ignore GGFS exceptions here to follow Hadoop 
contract.
             if (F.eq(IOException.class, e.getClass()) && (e.getCause() == null 
||
-                !!X.hasCause(e.getCause(), IgniteFsException.class)))
+                !X.hasCause(e.getCause(), IgniteFsException.class)))
                 throw e;
             else
                 return false;
@@ -933,7 +933,7 @@ public class GridGgfsHadoopFileSystem extends FileSystem {
         catch (IOException e) {
             // Intentionally ignore GGFS exceptions here to follow Hadoop 
contract.
             if (F.eq(IOException.class, e.getClass()) && (e.getCause() == null 
||
-                !!X.hasCause(e.getCause(), IgniteFsException.class)))
+                !X.hasCause(e.getCause(), IgniteFsException.class)))
                 throw e;
             else
                 return false;

Reply via email to