diff options
author | Brandon West <brawest@gmail.com> | 2013-01-14 11:34:22 -0700 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2013-01-14 11:34:22 -0700 |
commit | ff4c6524b6c29c9f4243225f651bfe44c3c51268 (patch) | |
tree | 22c37923c078436dc75ffbb54faa051334d99a57 /SendGrid/SendGridMail/Transport/Web.cs | |
parent | 24d3b0b342fe49901ce3664691d39b1bdb5e4f89 (diff) | |
download | sendgrid-csharp-ff4c6524b6c29c9f4243225f651bfe44c3c51268.zip sendgrid-csharp-ff4c6524b6c29c9f4243225f651bfe44c3c51268.tar.gz sendgrid-csharp-ff4c6524b6c29c9f4243225f651bfe44c3c51268.tar.bz2 |
fix build warnings
Diffstat (limited to 'SendGrid/SendGridMail/Transport/Web.cs')
-rw-r--r-- | SendGrid/SendGridMail/Transport/Web.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/SendGrid/SendGridMail/Transport/Web.cs b/SendGrid/SendGridMail/Transport/Web.cs index 3395bdd..ebb2982 100644 --- a/SendGrid/SendGridMail/Transport/Web.cs +++ b/SendGrid/SendGridMail/Transport/Web.cs @@ -19,8 +19,6 @@ namespace SendGridMail.Transport public const String XmlFormat = "xml"; private readonly NetworkCredential _credentials; - private readonly String _restEndpoint; - private readonly String _format; #endregion /// <summary> @@ -42,9 +40,6 @@ namespace SendGridMail.Transport internal Web(NetworkCredential credentials, String url = Endpoint) { _credentials = credentials; - - _format = XmlFormat; - _restEndpoint = url + "." + _format; } /// <summary> |