Skip to content

Commit

Permalink
perf_hooks: remove not exist entries from inspect
Browse files Browse the repository at this point in the history
Some of the milestones was removed in PR nodejs#21247 but entries not removed
from function for inspect PerformanceNodeTiming.
  • Loading branch information
fanatid committed Sep 11, 2019
1 parent be926c7 commit efbf6bd
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions lib/perf_hooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,15 +205,7 @@ class PerformanceNodeTiming extends PerformanceEntry {
bootstrapComplete: this.bootstrapComplete,
environment: this.environment,
loopStart: this.loopStart,
loopExit: this.loopExit,
thirdPartyMainStart: this.thirdPartyMainStart,
thirdPartyMainEnd: this.thirdPartyMainEnd,
clusterSetupStart: this.clusterSetupStart,
clusterSetupEnd: this.clusterSetupEnd,
moduleLoadStart: this.moduleLoadStart,
moduleLoadEnd: this.moduleLoadEnd,
preloadModuleLoadStart: this.preloadModuleLoadStart,
preloadModuleLoadEnd: this.preloadModuleLoadEnd
loopExit: this.loopExit
};
}
}
Expand Down

0 comments on commit efbf6bd

Please sign in to comment.