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/referencesource/System.Web/FileChangesMonitor.cs')
-rw-r--r--mcs/class/referencesource/System.Web/FileChangesMonitor.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/referencesource/System.Web/FileChangesMonitor.cs b/mcs/class/referencesource/System.Web/FileChangesMonitor.cs
index 5691656cb24..e4b03d4752a 100644
--- a/mcs/class/referencesource/System.Web/FileChangesMonitor.cs
+++ b/mcs/class/referencesource/System.Web/FileChangesMonitor.cs
@@ -149,7 +149,7 @@ namespace System.Web {
}
[SuppressMessage("Microsoft.Interoperability", "CA1404:CallGetLastErrorImmediatelyAfterPInvoke",
- Justification="Microsoft: Call to GetLastWin32Error() does follow P/Invoke call that is outside the if/else block.")]
+ Justification="[....]: Call to GetLastWin32Error() does follow P/Invoke call that is outside the if/else block.")]
static internal byte[] GetDacl(string filename) {
// DevDiv #322858 - allow skipping DACL step for perf gain
if (HostingEnvironment.FcnSkipReadAndCacheDacls) {
@@ -305,7 +305,7 @@ namespace System.Web {
}
else {
#if DBG
- // Needs the lock to sync with DebugDescription
+ // Needs the lock to [....] with DebugDescription
lock (_targets) {
#endif
_targets.Add(callback.Target, new FileMonitorTarget(callback, alias));
@@ -330,7 +330,7 @@ namespace System.Web {
#endif
if (target != null && target.Release() == 0) {
#if DBG
- // Needs the lock to sync with DebugDescription
+ // Needs the lock to [....] with DebugDescription
lock (_targets) {
#endif
_targets.Remove(callbackTarget);
@@ -1574,7 +1574,7 @@ namespace System.Web {
}
}
}
- // Dev10
+ // Dev10 Bug 663511: Deletes, moves, and renames of the App_LocalResources folder may be ignored
if (dirName.IndexOf(HttpRuntime.LocalResourcesDirectoryName, StringComparison.OrdinalIgnoreCase) > -1) {
return true;
}