From 67c393c9a3a0ba336acac0702579037544749750 Mon Sep 17 00:00:00 2001 From: Alfonso Altamirano Date: Tue, 17 Oct 2023 09:27:48 -0600 Subject: [PATCH] FISH-7158: solving formatting from PR comments --- .../sun/enterprise/admin/launcher/GFLauncherInfo.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/nucleus/admin/launcher/src/main/java/com/sun/enterprise/admin/launcher/GFLauncherInfo.java b/nucleus/admin/launcher/src/main/java/com/sun/enterprise/admin/launcher/GFLauncherInfo.java index 26a0789179f..e06fad739eb 100644 --- a/nucleus/admin/launcher/src/main/java/com/sun/enterprise/admin/launcher/GFLauncherInfo.java +++ b/nucleus/admin/launcher/src/main/java/com/sun/enterprise/admin/launcher/GFLauncherInfo.java @@ -215,7 +215,9 @@ public boolean isUpgrade() { * * @return true if the warmup is on. */ - public boolean isWarmup() { return warmup; } + public boolean isWarmup() { + return warmup; + } /** * @@ -471,12 +473,13 @@ else if(tsb.isFalse()) upgrade = true; else if(tsb.isFalse()) upgrade = false; - + tsb = getBoolean("warmup"); - if (tsb.isTrue()) + if (tsb.isTrue()) { warmup = true; - else if (tsb.isFalse()) + } else if (tsb.isFalse()) { warmup = false; + } } private void finalSetup() throws GFLauncherException {