THRIFT-4535: XML docs; code cleanup (tabs->spaces; String->string)
Client: C#
Patch: Christian Weiss
This closes #1524
diff --git a/lib/csharp/src/Protocol/TProtocolException.cs b/lib/csharp/src/Protocol/TProtocolException.cs
index 76c749d..a89c3fc 100644
--- a/lib/csharp/src/Protocol/TProtocolException.cs
+++ b/lib/csharp/src/Protocol/TProtocolException.cs
@@ -48,13 +48,13 @@
type_ = type;
}
- public TProtocolException(int type, String message)
+ public TProtocolException(int type, string message)
: base(message)
{
type_ = type;
}
- public TProtocolException(String message)
+ public TProtocolException(string message)
: base(message)
{
}