Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Fix lint errors πŸ™ˆ
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Sobo committed May 2, 2019
1 parent 508b56d commit 9b39eea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/path-watcher.js
Expand Up @@ -596,7 +596,6 @@ class PathWatcherManager {
w.onDidError = () => {} w.onDidError = () => {}
return w return w
} else { } else {
debugger
const w = new PathWatcher(this.nativeRegistry, rootPath, options) const w = new PathWatcher(this.nativeRegistry, rootPath, options)
w.onDidChange(eventCallback) w.onDidChange(eventCallback)
await w.getStartPromise() await w.getStartPromise()
Expand All @@ -610,7 +609,7 @@ class PathWatcherManager {
stopAllWatchers () { stopAllWatchers () {
if (this.useExperimentalWatcher()) { if (this.useExperimentalWatcher()) {
this.notifyWatcher.kill() this.notifyWatcher.kill()
this.notifyWatcher = null; this.notifyWatcher = null
return Promise.resolve() return Promise.resolve()
} else { } else {
return Promise.all( return Promise.all(
Expand Down

0 comments on commit 9b39eea

Please sign in to comment.