Override Eclipse’s formatting to keep Checkstyle happy

See gh-3964
This commit is contained in:
Andy Wilkinson 2015-09-15 07:15:02 -04:00
parent 95c8af462e
commit a9d67213be
1 changed files with 1 additions and 2 deletions

View File

@ -207,8 +207,7 @@ public class EmbeddedMongoAutoConfiguration {
private ToStringFriendlyFeatureAwareVersion(String version, Set<Feature> features) {
Assert.notNull(version, "version must not be null");
this.version = version;
this.features = features == null ? Collections.<Feature> emptySet()
: features;
this.features = features == null ? Collections.<Feature>emptySet() : features;
}
@Override