Skip to content

Commit

Permalink
C# doc comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
spruiell committed Mar 10, 2016
1 parent 1e8db1e commit d35a8a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/slice2cs/Gen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4579,12 +4579,12 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p)
_out << nl << "Ice.AsyncResult<" << delType << "> begin_" << p->name() << spar << paramsNewAsync << epar << ';';

_out << sp;
writeDocCommentAMI(p, InParam, deprecateReason,
"<param name=\"ctx__\">The Context map to send with the invocation.</param>");
if(!deprecateReason.empty())
{
_out << nl << "[_System.Obsolete(\"" << deprecateReason << "\")]";
}
writeDocCommentAMI(p, InParam, deprecateReason,
"<param name=\"ctx__\">The Context map to send with the invocation.</param>");
_out << nl << "Ice.AsyncResult<" << delType << "> begin_" << p->name() << spar << paramsNewAsync
<< "_System.Collections.Generic.Dictionary<string, string> ctx__" << epar << ';';

Expand Down

0 comments on commit d35a8a0

Please sign in to comment.