diff options
author | Brandon West <brawest@gmail.com> | 2013-01-14 11:29:35 -0700 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2013-01-14 11:29:35 -0700 |
commit | 6fe8efcba2ec7db9bd8e290d5cf1f45c0ec670b4 (patch) | |
tree | 1027cc4da95eb1cd18ed3e973a8f7be4af8dbca5 | |
parent | 9467474bed75ca54ff944716a468e029c25cd898 (diff) | |
download | sendgrid-csharp-6fe8efcba2ec7db9bd8e290d5cf1f45c0ec670b4.zip sendgrid-csharp-6fe8efcba2ec7db9bd8e290d5cf1f45c0ec670b4.tar.gz sendgrid-csharp-6fe8efcba2ec7db9bd8e290d5cf1f45c0ec670b4.tar.bz2 |
remove unused function from utils.cs
-rwxr-xr-x | SendGrid/SendGridMail/Utils.cs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/SendGrid/SendGridMail/Utils.cs b/SendGrid/SendGridMail/Utils.cs index c6f4386..0221aa4 100755 --- a/SendGrid/SendGridMail/Utils.cs +++ b/SendGrid/SendGridMail/Utils.cs @@ -27,20 +27,5 @@ namespace SendGridMail {
return "{"+String.Join(",",dic.Select(kvp => Serialize(kvp.Key) + ":" + Serialize(kvp.Value)))+"}";
}
-
- public static byte[] ReadFully(Stream input)
- {
- byte[] buffer = new byte[16*1024];
- using (MemoryStream ms = new MemoryStream())
- {
- int read;
- while ((read = input.Read(buffer, 0, buffer.Length)) > 0)
- {
- ms.Write(buffer, 0, read);
- }
- return ms.ToArray();
- }
- }
-
}
}
|