Simplify code by using for-each loop

See gh-15563
This commit is contained in:
igor-suhorukov
2018-12-25 00:06:13 +03:00
committed by Stephane Nicoll
parent cc5624efc4
commit dfb3cd51bc
3 changed files with 6 additions and 6 deletions

View File

@@ -164,9 +164,9 @@ public class SessionAutoConfiguration {
protected final String[] selectImports(WebApplicationType webApplicationType) {
List<String> imports = new ArrayList<>();
StoreType[] types = StoreType.values();
for (int i = 0; i < types.length; i++) {
for (StoreType type : types) {
imports.add(SessionStoreMappings.getConfigurationClass(webApplicationType,
types[i]));
type));
}
return StringUtils.toStringArray(imports);
}