Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/05/09 01:48:35 (15 years ago)
Author:
swagner
Message:

Corrected minor code formatting issues (#769)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.BackgroundProcessing/3.2/DispatchedView.cs

    r2404 r2408  
    1111
    1212namespace HeuristicLab.BackgroundProcessing {
    13 
    1413  /// <summary>
    1514  /// Takes an <code>ObservableEnumerable</code> and transfers all events to the
     
    1918  /// <typeparam name="T"></typeparam>
    2019  public class DispatchedView<T> : ObservableEnumerable<T> where T : class {
    21 
    2220    private List<T> cache;
    2321    private ObservableEnumerable<T> source;
     
    5149      if (CollectionChanged != null)
    5250        CollectionChanged(this, args);
    53     }   
     51    }
    5452
    5553    public IEnumerator<T> GetEnumerator() {
Note: See TracChangeset for help on using the changeset viewer.