Skip to content

Commit

Permalink
some javadoc
Browse files Browse the repository at this point in the history
Signed-off-by: Atanas Atanasov <[email protected]>
  • Loading branch information
ata-nas committed Nov 12, 2024
1 parent 5a944e9 commit a60a672
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions suites/src/main/java/com/hedera/block/suites/BaseSuite.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@
* <p>The Block Node Application version is retrieved dynamically from an environment file (.env).
*/
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().directory("../server/build").filename(".env").load();

Expand Down Expand Up @@ -143,10 +147,6 @@ protected static Configuration loadSimulatorDefaultConfiguration() throws IOExce
/**
* Retrieves the Block Node server version from the .env file.
*
* <p>This method loads the .env file from the "../server/docker" directory and extracts the
* value of the "VERSION" environment variable, which represents the version of the Block Node
* server to be used in the container.
*
* @return the version of the Block Node server as a string
*/
private static String getBlockNodeVersion() {
Expand Down

0 comments on commit a60a672

Please sign in to comment.