This is an automated email from the ASF dual-hosted git repository.
jensg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git
The following commit(s) were added to refs/heads/master by this push:
new 8630eb9 THRIFT-4741 Missing "inner" argument from one CTOR Client: C#
Patch: Jens Geyer
8630eb9 is described below
commit 8630eb9cf23bd734b1b979cebef83186cb5c1e24
Author: Jens Geyer <[email protected]>
AuthorDate: Sun Jan 20 11:33:35 2019 +0100
THRIFT-4741 Missing "inner" argument from one CTOR
Client: C#
Patch: Jens Geyer
This closes #1696
---
lib/csharp/src/Protocol/TProtocolException.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/csharp/src/Protocol/TProtocolException.cs
b/lib/csharp/src/Protocol/TProtocolException.cs
index b81db1a..41c26a3 100644
--- a/lib/csharp/src/Protocol/TProtocolException.cs
+++ b/lib/csharp/src/Protocol/TProtocolException.cs
@@ -43,7 +43,7 @@ namespace Thrift.Protocol
}
public TProtocolException(int type, Exception inner = null)
- : base(inner)
+ : base(string.Empty,inner)
{
type_ = type;
}