Use consistent block style
Update all code to use a consistent block style. Issue: SPR-16968
This commit is contained in:
committed by
Juergen Hoeller
parent
04a8c285df
commit
866e9d702e
@@ -276,8 +276,9 @@ final class PersistenceUnitReader {
|
||||
List<Element> classes = DomUtils.getChildElementsByTagName(persistenceUnit, MANAGED_CLASS_NAME);
|
||||
for (Element element : classes) {
|
||||
String value = DomUtils.getTextValue(element).trim();
|
||||
if (StringUtils.hasText(value))
|
||||
if (StringUtils.hasText(value)) {
|
||||
unitInfo.addManagedClassName(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user