From 2c2f9c83d6656eccc7a5e161e6feab907b083efc Mon Sep 17 00:00:00 2001 From: Atanas Atanasov Date: Wed, 13 Nov 2024 15:11:52 +0200 Subject: [PATCH] rename field to improve semantics Signed-off-by: Atanas Atanasov --- suites/src/main/java/com/hedera/block/suites/BaseSuite.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/suites/src/main/java/com/hedera/block/suites/BaseSuite.java b/suites/src/main/java/com/hedera/block/suites/BaseSuite.java index 8464b5429..c3b03acc4 100644 --- a/suites/src/main/java/com/hedera/block/suites/BaseSuite.java +++ b/suites/src/main/java/com/hedera/block/suites/BaseSuite.java @@ -50,7 +50,7 @@ public abstract class BaseSuite { * Dotenv instance to load the environment variables from the .env file that * is inside the build root of the :server. */ - protected static final Dotenv DOTENV = Dotenv.configure() + protected static final Dotenv SERVER_DOTENV = Dotenv.configure() .directory("../server/build/docker") .filename(".env") .load(); @@ -148,6 +148,6 @@ protected static Configuration loadSimulatorDefaultConfiguration() throws IOExce * @return the version of the Block Node server as a string */ private static String getBlockNodeVersion() { - return DOTENV.get("VERSION"); + return SERVER_DOTENV.get("VERSION"); } }