fixed decompiler errors - project compiles
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user