Repository: reef
Updated Branches:
  refs/heads/master 5da7cb457 -> b68ae3b79


[REEF-1652] Change properties of UpdateResult in IMRU to public from internal

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

Pull Request:
  This closes #1168


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

Branch: refs/heads/master
Commit: b68ae3b7991d46ee52859f3aa44abd3c8e1cc1f6
Parents: 5da7cb4
Author: dhruv <[email protected]>
Authored: Mon Oct 24 16:29:53 2016 -0700
Committer: Markus Weimer <[email protected]>
Committed: Tue Oct 25 17:33:57 2016 -0700

----------------------------------------------------------------------
 lang/cs/Org.Apache.REEF.IMRU/API/UpdateResult.cs | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/reef/blob/b68ae3b7/lang/cs/Org.Apache.REEF.IMRU/API/UpdateResult.cs
----------------------------------------------------------------------
diff --git a/lang/cs/Org.Apache.REEF.IMRU/API/UpdateResult.cs 
b/lang/cs/Org.Apache.REEF.IMRU/API/UpdateResult.cs
index 28a232c..b31d899 100644
--- a/lang/cs/Org.Apache.REEF.IMRU/API/UpdateResult.cs
+++ b/lang/cs/Org.Apache.REEF.IMRU/API/UpdateResult.cs
@@ -40,32 +40,32 @@ namespace Org.Apache.REEF.IMRU.API
             _done = done;
         }
 
-        internal bool IsDone
+        public bool IsDone
         {
             get { return _done; }
         }
 
-        internal bool IsNotDone
+        public bool IsNotDone
         {
             get { return !_done; }
         }
 
-        internal bool HasMapInput
+        public bool HasMapInput
         {
             get { return _hasMapInput; }
         }
 
-        internal bool HasResult
+        public bool HasResult
         {
             get { return _hasResult; }
         }
 
-        internal TMapInput MapInput
+        public TMapInput MapInput
         {
             get { return _mapInput; }
         }
 
-        internal TResult Result
+        public TResult Result
         {
             get { return _result; }
         }

Reply via email to