fixed decompiler errors - project compiles

This commit is contained in:
2017-10-06 18:20:35 +02:00
parent 2d8b6914b8
commit 9cefa0e9dd
40 changed files with 420 additions and 411 deletions

View File

@@ -176,7 +176,7 @@ namespace Rei.Fs
this.pDisposed = true;
try
{
EventHandler closingEventEvent = this.ClosingEventEvent;
EventHandler closingEventEvent = this.ClosingEvent;
if (closingEventEvent != null)
closingEventEvent((object) this, EventArgs.Empty);
}
@@ -184,7 +184,7 @@ namespace Rei.Fs
{
this.pBaseStream.Close();
}
EventHandler closedEventEvent = this.ClosedEventEvent;
EventHandler closedEventEvent = this.ClosedEvent;
if (closedEventEvent == null)
return;
closedEventEvent((object) this, EventArgs.Empty);