HHH-10972 - Fix checkstyle error

This commit is contained in:
Andrea Boriero 2016-09-15 15:04:36 +01:00
parent b995d7a70e
commit fd918c2a6e
1 changed files with 6 additions and 6 deletions

View File

@ -208,12 +208,12 @@ public class SchemaManagementToolCoordinator {
); );
} }
final ScriptSourceInput scriptSourceInput = includesScripts final ScriptSourceInput scriptSourceInput = includesScripts ?
? Helper.interpretScriptSourceSetting( scriptSourceSetting, Helper.interpretScriptSourceSetting(
serviceRegistry.getService( scriptSourceSetting,
ClassLoaderService.class ), serviceRegistry.getService( ClassLoaderService.class ),
(String) configurationValues (String) configurationValues.get( AvailableSettings.HBM2DDL_CHARSET_NAME )
.get( AvailableSettings.HBM2DDL_CHARSET_NAME ) ) )
: null; : null;
return new JpaTargetAndSourceDescriptor() { return new JpaTargetAndSourceDescriptor() {