Implement remainder of Spring Boot Checkstyle code rules
Fixes #532 Implements most of the remaining rules from Spring Boot, except JavaDoc + a few additional ones
This commit is contained in:
@@ -47,7 +47,8 @@ public class KryoCodecAutoConfiguration {
|
||||
@Autowired
|
||||
ApplicationContext applicationContext;
|
||||
|
||||
@Autowired KryoCodecProperties kryoCodecProperties;
|
||||
@Autowired
|
||||
KryoCodecProperties kryoCodecProperties;
|
||||
|
||||
@Bean
|
||||
public PojoCodec codec() {
|
||||
|
||||
@@ -27,7 +27,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
|
||||
public class KryoCodecProperties {
|
||||
private boolean references = true;
|
||||
|
||||
|
||||
public boolean isReferences() {
|
||||
return references;
|
||||
}
|
||||
@@ -35,5 +35,5 @@ public class KryoCodecProperties {
|
||||
public void setReferences(boolean references) {
|
||||
this.references = references;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user