Skip to content

Commit

Permalink
Address review comments in old PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
bhagyasakalanka committed Sep 5, 2021
1 parent 697a5c8 commit ff444a6
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -823,10 +823,11 @@ private static boolean isFormatCorrect(String regularExpression, String domainNa
private static void triggerPostTenantDelete(int tenantId, String tenantUuid, String adminUserUuid)
throws StratosException {

for (TenantMgtListener tenantMgtListener : TenantMgtServiceComponent
.getTenantMgtListeners()) {
log.debug("Executing OnPostDelete on Listener Impl Class Name : "
+ tenantMgtListener.getClass().getName());
for (TenantMgtListener tenantMgtListener : TenantMgtServiceComponent.getTenantMgtListeners()) {
if (log.isDebugEnabled()) {
log.debug("Executing OnPostDelete on Listener Impl Class Name: "
+ tenantMgtListener.getClass().getName());
}
tenantMgtListener.onPostDelete(tenantId, tenantUuid, adminUserUuid);
}
}
Expand Down

0 comments on commit ff444a6

Please sign in to comment.