@@ -13,8 +13,8 @@ namespace Orleans.EventSourcing.StateStorage
1313 /// A log view adaptor that wraps around a traditional storage adaptor, and uses batching and e-tags
1414 /// to append entries.
1515 ///<para>
16- /// The log itself is transient, i.e. not actually saved to storage - only the latest view and some
17- /// metadata (the log position, and write flags) are stored.
16+ /// The log itself is transient, i.e. not actually saved to storage - only the latest view and some
17+ /// metadata (the log position, and write flags) are stored.
1818 /// </para>
1919 /// </summary>
2020 /// <typeparam name="TLogView">Type of log view</typeparam>
@@ -219,7 +219,7 @@ public override string ToString()
219219 /// </summary>
220220 [ Serializable ]
221221 [ GenerateSerializer ]
222- protected internal sealed class UpdateNotificationMessage : INotificationMessage
222+ protected internal sealed class UpdateNotificationMessage : INotificationMessage
223223 {
224224 /// <inheritdoc/>
225225 [ Id ( 0 ) ]
@@ -296,7 +296,7 @@ protected override void ProcessNotifications()
296296 var updateNotification = notifications . ElementAt ( 0 ) . Value ;
297297 notifications . RemoveAt ( 0 ) ;
298298
299- // Apply all operations in pending
299+ // Apply all operations in pending
300300 foreach ( var u in updateNotification . Updates )
301301 try
302302 {
@@ -311,15 +311,15 @@ protected override void ProcessNotifications()
311311
312312 GlobalStateCache . StateAndMetaData . FlipBit ( updateNotification . Origin ) ;
313313
314- GlobalStateCache . ETag = updateNotification . ETag ;
314+ GlobalStateCache . ETag = updateNotification . ETag ;
315315
316316 Services . Log ( LogLevel . Debug , "notification success ({0} updates) {1}" , updateNotification . Updates . Count , GlobalStateCache ) ;
317317 }
318318
319319 Services . Log ( LogLevel . Trace , "unprocessed notifications in queue: {0}" , notifications . Count ) ;
320320
321321 base . ProcessNotifications ( ) ;
322-
322+
323323 }
324324
325325
0 commit comments