You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2016/08/15 07:38:59 UTC

[30/30] 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/e0c17893
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/e0c17893
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/e0c17893

Branch: refs/heads/ignite-1926
Commit: e0c17893f805f10eb49e2fd452223bcf7c196577
Parents: 830c530
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Mon Aug 15 10:37:44 2016 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Mon Aug 15 10:37:44 2016 +0300

----------------------------------------------------------------------
 .../java/org/apache/ignite/internal/processors/igfs/IgfsImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/e0c17893/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsImpl.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsImpl.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsImpl.java
index e4f5999..e1f8e61 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsImpl.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsImpl.java
@@ -924,7 +924,7 @@ public final class IgfsImpl implements IgfsEx {
     @Override public IgfsInputStreamAdapter open(final IgfsPath path, final int bufSize,
         final int seqReadsBeforePrefetch) {
         A.notNull(path, "path");
-        A.ensure(bufSize >= 0, "bufSize");
+        A.ensure(bufSize >= 0, "bufSize >= 0");
         A.ensure(seqReadsBeforePrefetch >= 0, "seqReadsBeforePrefetch >= 0");
 
         return safeOp(new Callable<IgfsInputStreamAdapter>() {