Skip to content

Commit

Permalink
remove trailing comma to fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
trevj committed Jan 17, 2019
1 parent eeefa60 commit d7a94ba
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/shadowbox/server/shared_metrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,10 @@ export class OutlineSharedMetricsPublisher implements SharedMetricsPublisher {
// toMetricsId: maps Access key ids to metric ids
// metricsUrl: where to post the metrics
constructor(
private clock: Clock,
private serverConfig: JsonConfig<ServerConfigJson>,
private clock: Clock, private serverConfig: JsonConfig<ServerConfigJson>,
usageMetrics: UsageMetrics,
private toMetricsId: (accessKeyId: AccessKeyId) => AccessKeyMetricsId,
private metricsCollector: MetricsCollectorClient,
) {
private metricsCollector: MetricsCollectorClient) {
// Start timer
this.reportStartTimestampMs = this.clock.now();

Expand Down

0 comments on commit d7a94ba

Please sign in to comment.