Removing boilerplate-generated #region
This commit is contained in:
parent
37f7dfd01f
commit
f89a586b75
|
|
@ -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
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -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
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue