Repository: incubator-reef Updated Branches: refs/heads/master a3cf683a2 -> d32c698e0
[REEF-736] Make Named Parameter PerMapConfigGeneratorSet public This addressed the issue by * making the parameter public JIRA: [REEF-736](https://issues.apache.org/jira/browse/REEF-736) This closes #477 Author: Dhruv <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/d32c698e Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/d32c698e Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/d32c698e Branch: refs/heads/master Commit: d32c698e03e3321ae9bd18d8e71b9cd0fe2f2f38 Parents: a3cf683 Author: Dhruv <[email protected]> Authored: Wed Sep 9 17:14:13 2015 -0700 Committer: Julia Wang <[email protected]> Committed: Wed Sep 9 20:17:55 2015 -0700 ---------------------------------------------------------------------- lang/cs/Org.Apache.REEF.IMRU/API/PerMapConfigGeneratorSet.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/d32c698e/lang/cs/Org.Apache.REEF.IMRU/API/PerMapConfigGeneratorSet.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IMRU/API/PerMapConfigGeneratorSet.cs b/lang/cs/Org.Apache.REEF.IMRU/API/PerMapConfigGeneratorSet.cs index 064a647..a7ba86c 100644 --- a/lang/cs/Org.Apache.REEF.IMRU/API/PerMapConfigGeneratorSet.cs +++ b/lang/cs/Org.Apache.REEF.IMRU/API/PerMapConfigGeneratorSet.cs @@ -25,7 +25,7 @@ using Org.Apache.REEF.Tang.Annotations; namespace Org.Apache.REEF.IMRU.API { [NamedParameter("Set of mapper specfic configuration generators", "setofmapconfig")] - internal sealed class PerMapConfigGeneratorSet : Name<ISet<IPerMapperConfigGenerator>> + public sealed class PerMapConfigGeneratorSet : Name<ISet<IPerMapperConfigGenerator>> { } } \ No newline at end of file
