Skip to content
Snippets Groups Projects
Commit 139a8955 authored by Mirco Nasuti's avatar Mirco Nasuti
Browse files

explicit scoping/visibility where missing following codacy hint

parent be36e328
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ public class ExperimentActor extends UntypedActor {
@Autowired
private ExperimentRepository experimentRepository;
LoggingAdapter log = Logging.getLogger(getContext().system(), this);
private LoggingAdapter log = Logging.getLogger(getContext().system(), this);
@Override
......
......@@ -37,7 +37,8 @@ class AkkaConfiguration {
return system;
}
@Bean String wokenRefPath() {
@Bean
public String wokenRefPath() {
return "akka.tcp://woken@"+wokenHost+":"+wokenPort+wokenPath;
}
......
......@@ -161,13 +161,13 @@ public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
@Bean(name="hbp")
@ConfigurationProperties("hbp.client")
OAuth2ProtectedResourceDetails hbp() {
public OAuth2ProtectedResourceDetails hbp() {
return new AuthorizationCodeResourceDetails();
}
@Bean(name="hbpResource")
@ConfigurationProperties("hbp.resource")
ResourceServerProperties hbpResource() {
public ResourceServerProperties hbpResource() {
return new ResourceServerProperties();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment