Skip to content

Commit

Permalink
Removed potential redundant notify filter
Browse files Browse the repository at this point in the history
  • Loading branch information
madskristensen committed May 5, 2017
1 parent 610fe23 commit 98484a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BrowserLink/ReloadExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public ReloadExtension(Project project)
_watcher = new FileSystemWatcher(folder);
_watcher.Changed += FileChanged;
_watcher.IncludeSubdirectories = true;
_watcher.NotifyFilter = NotifyFilters.Size | NotifyFilters.CreationTime | NotifyFilters.LastWrite;
_watcher.NotifyFilter = NotifyFilters.Size | NotifyFilters.CreationTime;
_watcher.EnableRaisingEvents = VSPackage.Options.EnableReload;

_timer = new Timer(TimerElapsed, null, 0, VSPackage.Options.Delay);
Expand Down

0 comments on commit 98484a7

Please sign in to comment.