Skip to content

Commit

Permalink
fix: remove
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurkale22 committed Oct 18, 2019
1 parent 4edd0c8 commit 0361ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/opentelemetry-metrics/src/Meter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class Meter implements types.Meter {
getMetrics(): ReadableMetric[] {
return Array.from(this._metrics.values())
.map(metric => metric.get())
.filter(metric => !!metric) as ReadableMetric[];
.filter(metric => !!metric);
}

/**
Expand Down

0 comments on commit 0361ac1

Please sign in to comment.