diff options
author | Thomas Nelson <nelson24@att.com> | 2019-07-09 14:48:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-09 14:48:20 +0000 |
commit | 85e7c6bb431ee849eab28b3fa6e9de9b40b7863a (patch) | |
tree | 05a75f89bd379baa2fa79d6695eb955fa7243a40 /src | |
parent | ffd09274f30926e38b689fc082dd6f7d0bcc491c (diff) | |
parent | a62841be9cc558c03a1f0b680f64540b73f3d599 (diff) |
Merge "Sonar Fix - added static for the fields"
Diffstat (limited to 'src')
-rwxr-xr-x | src/main/java/org/onap/music/MusicApplication.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/org/onap/music/MusicApplication.java b/src/main/java/org/onap/music/MusicApplication.java index aa4de01e..22c9e7bf 100755 --- a/src/main/java/org/onap/music/MusicApplication.java +++ b/src/main/java/org/onap/music/MusicApplication.java @@ -55,9 +55,9 @@ import org.springframework.web.context.request.RequestContextListener; @EnableScheduling public class MusicApplication extends SpringBootServletInitializer { - private final String KEYSPACE_PATTERN = "/v2/keyspaces/*"; - private final String LOCKS_PATTERN = "/v2/locks/*"; - private final String Q_PATTERN = "/v2/priorityq/*"; + private static final String KEYSPACE_PATTERN = "/v2/keyspaces/*"; + private static final String LOCKS_PATTERN = "/v2/locks/*"; + private static final String Q_PATTERN = "/v2/priorityq/*"; @Autowired private PropertiesLoader propertyLoader; |