Normalize cr/lf/tab
This commit is contained in:
@@ -7,7 +7,7 @@ using System.Threading;
|
||||
namespace Umbraco.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides a convenience methodology for implementing locked access to resources.
|
||||
/// Provides a convenience methodology for implementing locked access to resources.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Intended as an infrastructure class.
|
||||
@@ -17,9 +17,9 @@ namespace Umbraco.Core
|
||||
private readonly ReaderWriterLockSlim _rwLock;
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ReadLock"/> class.
|
||||
/// Initializes a new instance of the <see cref="ReadLock"/> class.
|
||||
/// </summary>
|
||||
public ReadLock(ReaderWriterLockSlim rwLock)
|
||||
public ReadLock(ReaderWriterLockSlim rwLock)
|
||||
{
|
||||
_rwLock = rwLock;
|
||||
_rwLock.EnterReadLock();
|
||||
|
||||
Reference in New Issue
Block a user