Skip to content

Commit

Permalink
Run spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
jtraglia committed Oct 21, 2024
1 parent 16dc733 commit 35d76c6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencyManagement {
dependency 'com.fasterxml.jackson.dataformat:jackson-dataformat-toml:2.17.2'
dependency 'com.fasterxml.jackson.module:jackson-module-kotlin:2.17.2'

dependencySet(group: 'com.google.errorprone', version: '2.31.0') {
dependencySet(group: 'com.google.errorprone', version: '2.34.0') {
entry 'error_prone_annotation'
entry 'error_prone_check_api'
entry 'error_prone_core'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
@SuppressWarnings("JavaCase")
public class JemallocDetector {
private static final Logger LOG = LogManager.getLogger();

@SuppressWarnings("NonFinalStaticField")
private static String _jemalloc;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,25 @@ public class LoggingConfigurator {

@SuppressWarnings("NonFinalStaticField")
private static LoggingDestination destination;

@SuppressWarnings("NonFinalStaticField")
private static boolean includeEvents;

@SuppressWarnings("NonFinalStaticField")
private static boolean includeValidatorDuties;

@SuppressWarnings("NonFinalStaticField")
private static boolean includeP2pWarnings;

@SuppressWarnings("NonFinalStaticField")
private static String file;

@SuppressWarnings("NonFinalStaticField")
private static String filePattern;

@SuppressWarnings("NonFinalStaticField")
private static Level rootLogLevel = Level.INFO;

@SuppressWarnings("NonFinalStaticField")
private static int dbOpAlertThresholdMillis;

Expand Down

0 comments on commit 35d76c6

Please sign in to comment.