Skip to content

Commit

Permalink
fix: checkstyles
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbuon committed Sep 20, 2024
1 parent c8fe4dc commit e36cd50
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ public final class ConfigBuilder {
private boolean truncateLargePayloads;
private int maximumTelemetryData = DEFAULT_CAPACITY_FOR_TELEMETRY_EVENTS;
private TelemetryEventTracker telemetryEventTracker;
private final static int MINIMUM_CAPACITY_FOR_TELEMETRY_EVENTS = 1;
private final static int DEFAULT_CAPACITY_FOR_TELEMETRY_EVENTS = 10;
private final static int MAXIMUM_CAPACITY_FOR_TELEMETRY_EVENTS = 50;
private static final int MINIMUM_CAPACITY_FOR_TELEMETRY_EVENTS = 1;
private static final int DEFAULT_CAPACITY_FOR_TELEMETRY_EVENTS = 10;
private static final int MAXIMUM_CAPACITY_FOR_TELEMETRY_EVENTS = 50;

/**
* Constructor with an access token.
Expand Down Expand Up @@ -540,7 +540,8 @@ public Config build() {
}

if (telemetryEventTracker == null) {
telemetryEventTracker = new RollbarTelemetryEventTracker(new TimestampProvider(), maximumTelemetryData);
telemetryEventTracker =
new RollbarTelemetryEventTracker(new TimestampProvider(), maximumTelemetryData);
}

return new ConfigImpl(this);
Expand Down

0 comments on commit e36cd50

Please sign in to comment.