Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.IO/NullFileWatcher.cs')
-rw-r--r--mcs/class/System/System.IO/NullFileWatcher.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/mcs/class/System/System.IO/NullFileWatcher.cs b/mcs/class/System/System.IO/NullFileWatcher.cs
index 33f314f55b8..ea1cbccfaee 100644
--- a/mcs/class/System/System.IO/NullFileWatcher.cs
+++ b/mcs/class/System/System.IO/NullFileWatcher.cs
@@ -35,12 +35,17 @@ namespace System.IO
{
static IFileWatcher instance;
- public void StartDispatching (FileSystemWatcher fsw)
+ public void StartDispatching (object handle)
{
// does nothing
}
- public void StopDispatching (FileSystemWatcher fsw)
+ public void StopDispatching (object handle)
+ {
+ // does nothing
+ }
+
+ public void Dispose (object handle)
{
// does nothing
}