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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ward <matt.ward@microsoft.com>2018-06-11 17:40:04 +0300
committerMatt Ward <matt.ward@microsoft.com>2018-06-11 17:40:04 +0300
commitb417d4bddfb5b2ffd8fb9be01743b1b9c2f760d7 (patch)
treee4d89a22861bfa5f504b0b24ce2ff3394dd2cc2a /main/src/addins/MonoDevelop.Autotools
parent0895d3800234e926986d613dcca82c23318ea5ac (diff)
[Autotools] Rely on file watcher for file change events
Remove calls to FileService.NotifyFileChanged when the makefile is updated. The file watcher will fire the file change events for makefiles in the project or solution directory.
Diffstat (limited to 'main/src/addins/MonoDevelop.Autotools')
-rw-r--r--main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs b/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs
index 5891c9e95e..e61eb4635d 100644
--- a/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs
+++ b/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs
@@ -262,7 +262,6 @@ namespace MonoDevelop.Autotools
sw.Write (content);
UpdatedMakefiles++;
- FileService.NotifyFileChanged (fileName);
}
void ThrowMakefileVarNotFound (string var)