Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Pro committed Jul 13, 2016
1 parent 88426a9 commit d9a05b7
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions Src/Exchange.DkimSigner/DkimSigner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ namespace Exchange.DkimSigner
public class DkimSigner
{

/// <summary>
/// A value indicating whether or not the instance of the signer has been disposed.
/// </summary>
private bool disposed;

/// <summary>
/// The headers that should be a part of the DKIM signature, if present in the message.
/// </summary>
Expand Down Expand Up @@ -183,9 +178,6 @@ public Dictionary<string, DomainElementSigner> GetDomains()
/// <returns></returns>
public void SignMessage(DomainElementSigner domainSigner, MailItem mailItem)
{
if (disposed)
throw new ObjectDisposedException("DkimSigner");

using (Stream stream = mailItem.GetMimeReadStream())
{
stream.Seek(0, SeekOrigin.Begin);
Expand Down

0 comments on commit d9a05b7

Please sign in to comment.