Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1CF341854B for ; Tue, 15 Mar 2016 20:11:40 +0000 (UTC) Received: (qmail 56663 invoked by uid 500); 15 Mar 2016 20:11:40 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 56593 invoked by uid 500); 15 Mar 2016 20:11:40 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 56477 invoked by uid 99); 15 Mar 2016 20:11:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Mar 2016 20:11:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B52D8DFFF9; Tue, 15 Mar 2016 20:11:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: vozerov@apache.org To: commits@ignite.apache.org Date: Tue, 15 Mar 2016 20:11:42 -0000 Message-Id: <90f5bd2c069a47e18fe02ef8748aa695@git.apache.org> In-Reply-To: <6f807b29d3ed4962a7b40134efd8dede@git.apache.org> References: <6f807b29d3ed4962a7b40134efd8dede@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [4/9] ignite git commit: WIP. WIP. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/2259757d Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/2259757d Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/2259757d Branch: refs/heads/ignite-2817 Commit: 2259757d06ec97177dbf6f179414f7d4419c5ded Parents: 57429a9 Author: thatcoach Authored: Tue Mar 15 22:29:09 2016 +0300 Committer: thatcoach Committed: Tue Mar 15 22:29:09 2016 +0300 ---------------------------------------------------------------------- .../processors/igfs/IgfsMetaManager.java | 30 ++++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/2259757d/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsMetaManager.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsMetaManager.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsMetaManager.java index 1a08a9b..e24073a 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsMetaManager.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsMetaManager.java @@ -3489,49 +3489,49 @@ public class IgfsMetaManager extends IgfsManager { /** File chain builder. */ private class DirectoryChainBuilder { /** The requested path to be created. */ - protected final IgfsPath path; + private final IgfsPath path; /** Full path components. */ - protected final List components; + private final List components; /** The list of ids. */ - protected final List idList; + private final List idList; /** The set of ids. */ - protected final SortedSet idSet = new TreeSet(PATH_ID_SORTING_COMPARATOR); + private final SortedSet idSet = new TreeSet(PATH_ID_SORTING_COMPARATOR); /** The middle node properties. */ - protected final Map middleProps; + private final Map middleProps; /** The leaf node properties. */ - protected final Map leafProps; + private final Map leafProps; /** The lowermost exsiting path id. */ - protected final IgniteUuid lowermostExistingId; + private final IgniteUuid lowermostExistingId; /** The existing path. */ - protected final IgfsPath existingPath; + private final IgfsPath existingPath; /** The created leaf info. */ - protected IgfsFileInfo leafInfo; + private IgfsFileInfo leafInfo; /** The leaf parent id. */ - protected IgniteUuid leafParentId; + private IgniteUuid leafParentId; /** The number of existing ids. */ - protected final int existingIdCnt; + private final int existingIdCnt; /** Whether laef is directory. */ private final boolean leafDir; /** Block size. */ - private int blockSize; + private final int blockSize; /** Affinity key. */ - private IgniteUuid affKey; + private final IgniteUuid affKey; /** Evict exclude flag. */ - private boolean evictExclude; + private final boolean evictExclude; /** * Constructor for directories. @@ -3596,7 +3596,7 @@ public class IgfsMetaManager extends IgfsManager { int idIdx = 0; - for (IgniteUuid id: idList) { + for (IgniteUuid id : idList) { if (id == null) break;