Skip to content

Commit a984c85

Browse files
committed
#538 Formatting
1 parent 9d29f50 commit a984c85

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

accesscontroltool-bundle/src/main/java/biz/netcentric/cq/tools/actool/configreader/YamlConfigReader.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,10 @@ private AuthorizablesConfig getAuthorizableBeans(
217217
final List<Map<String, Object>> currentAuthorizableData = (List<Map<String, Object>>) currentMap.get(currentAuthorizableIdFromYaml);
218218

219219
if ((currentAuthorizableData != null) && !currentAuthorizableData.isEmpty()) {
220-
221-
if(currentAuthorizableData.size() > 1) {
222-
throw new AcConfigBeanValidationException("Invalid authorizable " + currentAuthorizableIdFromYaml +" - configuration needs to contain exactly one yaml list entry");
220+
221+
if (currentAuthorizableData.size() > 1) {
222+
throw new AcConfigBeanValidationException("Invalid authorizable " + currentAuthorizableIdFromYaml
223+
+ " - configuration needs to contain exactly one yaml list entry");
223224
}
224225
try {
225226
Map<String, Object> currentPrincipalDataMap = currentAuthorizableData.get(0);

0 commit comments

Comments
 (0)