Skip to content

Commit

Permalink
LPD-41365 SF
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Nov 6, 2024
1 parent 3bf898e commit 4e1b081
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ public LayoutPrivateLayoutsUpgradeProcess(

@Override
protected void doUpgrade() throws Exception {
String value;
try (LoggingTimer loggingTimer = new LoggingTimer()) {
String value;

if (ReleaseFeatureFlagManagerUtil.isEnabled(
ReleaseFeatureFlag.DISABLE_PRIVATE_LAYOUTS)) {
if (ReleaseFeatureFlagManagerUtil.isEnabled(
ReleaseFeatureFlag.DISABLE_PRIVATE_LAYOUTS)) {

value = Boolean.FALSE.toString();
}
else {
value = Boolean.TRUE.toString();
}
value = Boolean.FALSE.toString();
}
else {
value = Boolean.TRUE.toString();
}

try (LoggingTimer loggingTimer = new LoggingTimer()) {
_companyLocalService.forEachCompanyId(
companyId -> {
try {
Expand Down

0 comments on commit 4e1b081

Please sign in to comment.