Nullability refinements on private and static methods
Based on IntelliJ IDEA 2017.3 introspection results. Issue: SPR-15756
This commit is contained in:
@@ -205,7 +205,9 @@ public class EhCacheFactoryBean extends CacheConfiguration implements FactoryBea
|
||||
String cacheName = getName();
|
||||
if (cacheName == null) {
|
||||
cacheName = this.beanName;
|
||||
setName(cacheName);
|
||||
if (cacheName != null) {
|
||||
setName(cacheName);
|
||||
}
|
||||
}
|
||||
|
||||
// If no CacheManager given, fetch the default.
|
||||
|
||||
Reference in New Issue
Block a user