Skip to content

Commit

Permalink
Removed SuppressFBWarnings annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
reshmabidikar committed Jan 15, 2024
1 parent 43116cf commit 8179a2e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import com.google.common.collect.ImmutableMap;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;

@SuppressFBWarnings("UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD")
public class AnalyticsConfiguration {

// List of account ids to ignore
Expand Down Expand Up @@ -67,7 +66,7 @@ public AnalyticsConfiguration() {
this (new LinkedList<>(), new LinkedList<>(), 10, 100, 10, true, false, new LinkedList<>());
}

public AnalyticsConfiguration(final boolean enableTemplateVariables){
public AnalyticsConfiguration(final boolean enableTemplateVariables) {
this(new LinkedList<>(), new LinkedList<>(), 10, 100, 10, true, enableTemplateVariables, new LinkedList<>());
}

Expand Down

0 comments on commit 8179a2e

Please sign in to comment.