Removing boilerplate-generated #region

This commit is contained in:
Louis DeJardin 2015-09-19 11:27:54 -07:00
parent 37f7dfd01f
commit f89a586b75
3 changed files with 0 additions and 9 deletions

View File

@ -18,8 +18,6 @@ namespace Microsoft.AspNet.Server.Kestrel
_dispose = dispose; _dispose = dispose;
} }
#region IDisposable Support
protected virtual void Dispose(bool disposing) protected virtual void Dispose(bool disposing)
{ {
if (!disposedValue) if (!disposedValue)
@ -41,6 +39,5 @@ namespace Microsoft.AspNet.Server.Kestrel
Dispose(true); Dispose(true);
GC.SuppressFinalize(this); GC.SuppressFinalize(this);
} }
#endregion
} }
} }

View File

@ -126,8 +126,6 @@ namespace Microsoft.AspNet.Server.Kestrel.Infrastructure
_blocks.Push(block); _blocks.Push(block);
} }
#region IDisposable Support
protected virtual void Dispose(bool disposing) protected virtual void Dispose(bool disposing)
{ {
if (!disposedValue) if (!disposedValue)
@ -164,6 +162,5 @@ namespace Microsoft.AspNet.Server.Kestrel.Infrastructure
// N/A: uncomment the following line if the finalizer is overridden above. // N/A: uncomment the following line if the finalizer is overridden above.
// GC.SuppressFinalize(this); // GC.SuppressFinalize(this);
} }
#endregion
} }
} }

View File

@ -57,8 +57,6 @@ namespace Microsoft.AspNet.Server.Kestrel.Infrastructure
}; };
} }
#region IDisposable Support
protected virtual void Dispose(bool disposing) protected virtual void Dispose(bool disposing)
{ {
if (!disposedValue) if (!disposedValue)
@ -94,6 +92,5 @@ namespace Microsoft.AspNet.Server.Kestrel.Infrastructure
// uncomment the following line if the finalizer is overridden above. // uncomment the following line if the finalizer is overridden above.
GC.SuppressFinalize(this); GC.SuppressFinalize(this);
} }
#endregion
} }
} }