[IGNITE-218]: one class corrected.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/399743c3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/399743c3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/399743c3 Branch: refs/heads/ignite-218 Commit: 399743c35857553002c98744ada4a14deb4ae08d Parents: 89457c4 Author: iveselovskiy <iveselovs...@gridgain.com> Authored: Thu Apr 16 14:10:11 2015 +0300 Committer: iveselovskiy <iveselovs...@gridgain.com> Committed: Thu Apr 16 14:10:11 2015 +0300 ---------------------------------------------------------------------- .../processors/igfs/IgfsSecondaryFileSystemImpl.java | 12 ------------ 1 file changed, 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/399743c3/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsSecondaryFileSystemImpl.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsSecondaryFileSystemImpl.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsSecondaryFileSystemImpl.java index 23431a9..a68e093 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsSecondaryFileSystemImpl.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsSecondaryFileSystemImpl.java @@ -118,16 +118,4 @@ class IgfsSecondaryFileSystemImpl implements IgfsSecondaryFileSystem { @Override public Map<String, String> properties() { return Collections.emptyMap(); } - - /** {@inheritDoc} */ - @Override public IgfsSecondaryFileSystem forUser(String userName) throws IgniteCheckedException { - IgfsEx forUser = igfs.forUser(userName); - - return new IgfsSecondaryFileSystemImpl(forUser); - } - - /** {@inheritDoc} */ - @Override public String getUser() { - return igfs.user(); - } }