Repository: reef
Updated Branches:
  refs/heads/master 83f905db5 -> c2cca4945


[REEF-1218]  Revert FileStatus constructor as public

JIRA:
  [REEF-1218](https://issues.apache.org/jira/browse/REEF-1218)

Pull Request:
  This closes #854


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

Branch: refs/heads/master
Commit: c2cca4945bb6ba5f47a1bfab31372317aebb986a
Parents: 83f905d
Author: Julia Wang <[email protected]>
Authored: Tue Feb 23 15:24:23 2016 -0800
Committer: Dongjoon Hyun <[email protected]>
Committed: Tue Feb 23 16:21:16 2016 -0800

----------------------------------------------------------------------
 lang/cs/Org.Apache.REEF.IO/FileSystem/FileStatus.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/reef/blob/c2cca494/lang/cs/Org.Apache.REEF.IO/FileSystem/FileStatus.cs
----------------------------------------------------------------------
diff --git a/lang/cs/Org.Apache.REEF.IO/FileSystem/FileStatus.cs 
b/lang/cs/Org.Apache.REEF.IO/FileSystem/FileStatus.cs
index 823a29a..5c1f999 100644
--- a/lang/cs/Org.Apache.REEF.IO/FileSystem/FileStatus.cs
+++ b/lang/cs/Org.Apache.REEF.IO/FileSystem/FileStatus.cs
@@ -29,7 +29,7 @@ namespace Org.Apache.REEF.IO.FileSystem
         /// </summary>
         /// <param name="modificationTime">Last modification time of the 
file</param>
         /// <param name="lengthBytes">Size of the file in bytes</param>
-        internal FileStatus(DateTime modificationTime, long lengthBytes)
+        public FileStatus(DateTime modificationTime, long lengthBytes)
         {
             ModificationTime = modificationTime;
             LengthBytes = lengthBytes;

Reply via email to