Winify – Diff between revs 43 and 44

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 43 Rev 44
Line 16... Line 16...
16   16  
Line 17... Line 17...
17 public ObservableCollection<string> Events { get; } = new ObservableCollection<string>(); 17 public ObservableCollection<string> Events { get; } = new ObservableCollection<string>();
18   18  
19 public void Emit(LogEvent logEvent) -  
20 { -  
21 if (logEvent == null) 19 public void Emit(LogEvent logEvent)
22 { -  
Line 23... Line 20...
23 throw new ArgumentNullException(nameof(logEvent)); 20 {
24 } 21 if (logEvent == null) throw new ArgumentNullException(nameof(logEvent));
25   22  
26 using (var stringWriter = new StringWriter()) 23 using (var stringWriter = new StringWriter())