commit | f36fda203565430086e23ab6a231fdc5ec3d4b48 | [log] [tgz] |
---|---|---|
author | Jens Geyer <jensg@apache.org> | Mon Feb 24 22:57:52 2014 +0100 |
committer | Jens Geyer <jensg@apache.org> | Mon Feb 24 22:57:52 2014 +0100 |
tree | d94cff74eb3f9cc70567f1c9f9c91e4201ff3ed5 | |
parent | 98d9ef2bd675e16dde9304061f71b6435caa5cf8 [diff] [blame] |
THRIFT-2305 TFramedTransport empty constructor should probably be private Patch: Alex Ausch & Jens Geyer
diff --git a/lib/csharp/src/Transport/TSocket.cs b/lib/csharp/src/Transport/TSocket.cs index 1d50968..7717cfb 100644 --- a/lib/csharp/src/Transport/TSocket.cs +++ b/lib/csharp/src/Transport/TSocket.cs
@@ -44,7 +44,8 @@ } } - public TSocket(string host, int port) : this(host, port, 0) + public TSocket(string host, int port) + : this(host, port, 0) { }