Repository: reef Updated Branches: refs/heads/master e9fdc17ac -> e1e2ff94a
[REEF-1093] Pass through O.A.R.IO to hide unnecessarily public APIs JIRA: [REEF-1093](https://issues.apache.org/jira/browse/REEF-1093) Pull Request: This closes #766 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/e1e2ff94 Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/e1e2ff94 Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/e1e2ff94 Branch: refs/heads/master Commit: e1e2ff94abba03c7c2e446cd8248e25ad39abaa8 Parents: e9fdc17 Author: Andrew Chung <[email protected]> Authored: Wed Jan 13 10:12:22 2016 -0800 Committer: Markus Weimer <[email protected]> Committed: Thu Jan 14 10:40:12 2016 -0800 ---------------------------------------------------------------------- lang/cs/Org.Apache.REEF.IO/FileSystem/FileStatus.cs | 2 +- lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj | 3 --- lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs | 5 +++++ 3 files changed, 6 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/e1e2ff94/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 5c1f999..823a29a 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> - public FileStatus(DateTime modificationTime, long lengthBytes) + internal FileStatus(DateTime modificationTime, long lengthBytes) { ModificationTime = modificationTime; LengthBytes = lengthBytes; http://git-wip-us.apache.org/repos/asf/reef/blob/e1e2ff94/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj b/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj index f33d656..016cb7c 100644 --- a/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj +++ b/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj @@ -143,8 +143,5 @@ under the License. <Name>Org.Apache.REEF.Common</Name> </ProjectReference> </ItemGroup> - <ItemGroup> - <WCFMetadata Include="Service References\" /> - </ItemGroup> <ItemGroup /> </Project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/reef/blob/e1e2ff94/lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs index 96f6167..0f20d5c 100644 --- a/lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs @@ -45,6 +45,11 @@ using System.Runtime.InteropServices; "9c03469d0f93a9f5d45aa2c883f50cd158759e93673f759ec4657fd84cc79d2db38ef1a2d914cc" + "b7c717846a897e11dd22eb260a7ce2da2dccf0263ea63e2b3f7dac24f28882aa568ef544341d17" + "618392a1095f4049ad079d4f4f0b429bb535699155fd6a7652ec7d6c1f1ba2b560f11ef3a86b5945d288cf")] +[assembly: InternalsVisibleTo("Org.Apache.REEF.Client.Tests, publickey=" + + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + + "9c03469d0f93a9f5d45aa2c883f50cd158759e93673f759ec4657fd84cc79d2db38ef1a2d914cc" + + "b7c717846a897e11dd22eb260a7ce2da2dccf0263ea63e2b3f7dac24f28882aa568ef544341d17" + + "618392a1095f4049ad079d4f4f0b429bb535699155fd6a7652ec7d6c1f1ba2b560f11ef3a86b5945d288cf")] // Allow NSubstitute to create proxy implementations [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2, PublicKey=002400000480000" +
