Skip to content

Commit

Permalink
Merge pull request #947 from microsoft/springbootstarter_findbugs_fixes
Browse files Browse the repository at this point in the history
Springbootstarter findbugs fixes
  • Loading branch information
littleaj authored Jun 13, 2019
2 parents ea25224 + a2743bb commit 7a048f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ void processAndLoadJmxCounters(List<String> jmxCounterList) {
/**
* This Internal class is used to represent the Jmx Object Structure
*/
private class CompositeJmxData {
private static class CompositeJmxData {
String displayName;
String objectName;
String attributeName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ public class SpringBootHeartBeatProvider implements HeartBeatPayloadProviderInte
/**
* Name of this provider.
*/
private final String name = "SpringBootProvider";
private static final String name = "SpringBootProvider";

private final String SPRING_BOOT_VERSION = "ai.spring-boot.version";
private static final String SPRING_BOOT_VERSION = "ai.spring-boot.version";

private final String SPRING_VERSION = "ai.spring.version";
private static final String SPRING_VERSION = "ai.spring.version";

private final String SPRING_BOOT_STARTER_VERSION = "ai.spring.boot.starter.version";
private static final String SPRING_BOOT_STARTER_VERSION = "ai.spring.boot.starter.version";



Expand Down

0 comments on commit 7a048f5

Please sign in to comment.