Skip to content

Commit d981d26

Browse files
Fix whitespace
1 parent cff5d98 commit d981d26

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

src/NHibernate/Impl/AbstractSessionImpl.cs

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -410,31 +410,31 @@ public bool IsClosed
410410
public IDisposable BeginProcess()
411411
{
412412
return _processHelper.BeginProcess(this);
413-
}
413+
}
414414

415-
/// <summary>
416-
/// If not nested in another call to <c>BeginProcess</c> on this session, optionnaly check
415+
/// <summary>
416+
/// If not nested in another call to <c>BeginProcess</c> on this session, optionnaly check
417417
/// and update the session status, then set its session id in context and flag it as processing.
418-
/// </summary>
418+
/// </summary>
419419
/// <param name="noCheckAndUpdate"><see langword="true" /> to initiate a processing without
420420
/// checking and updating the session.</param>
421-
/// <returns>
422-
/// If not already processing, an object to dispose for signaling the end of the process.
423-
/// Otherwise, <see langword="null" />.
424-
/// </returns>
425-
protected IDisposable BeginProcess(bool noCheckAndUpdate)
426-
{
427-
return _processHelper.BeginProcess(this, noCheckAndUpdate);
428-
}
429-
430-
/// <summary>
431-
/// If not nested in a call to <c>BeginProcess</c> on this session, set its session id in context.
432-
/// </summary>
433-
/// <returns>
434-
/// If not already processing, an object to dispose for restoring the previous session id.
435-
/// Otherwise, <see langword="null" />.
436-
/// </returns>
437-
public IDisposable BeginContext()
421+
/// <returns>
422+
/// If not already processing, an object to dispose for signaling the end of the process.
423+
/// Otherwise, <see langword="null" />.
424+
/// </returns>
425+
protected IDisposable BeginProcess(bool noCheckAndUpdate)
426+
{
427+
return _processHelper.BeginProcess(this, noCheckAndUpdate);
428+
}
429+
430+
/// <summary>
431+
/// If not nested in a call to <c>BeginProcess</c> on this session, set its session id in context.
432+
/// </summary>
433+
/// <returns>
434+
/// If not already processing, an object to dispose for restoring the previous session id.
435+
/// Otherwise, <see langword="null" />.
436+
/// </returns>
437+
public IDisposable BeginContext()
438438
{
439439
return _processHelper.Processing ? null : SessionIdLoggingContext.CreateOrNull(SessionId);
440440
}

0 commit comments

Comments
 (0)