From 5215c953e0fbe0259479c0b272dfea343d101c92 Mon Sep 17 00:00:00 2001 From: Sally MacFarlane Date: Thu, 13 Mar 2025 09:23:41 +1000 Subject: [PATCH] remove Hyperledger from EVM tool logs/docs (#8405) Signed-off-by: Sally MacFarlane --- .../hyperledger/besu/evmtool/EvmToolCommand.java | 2 +- .../hyperledger/besu/evmtool/VersionProvider.java | 13 ++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/EvmToolCommand.java b/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/EvmToolCommand.java index 7dde74946..b5f7bdc58 100644 --- a/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/EvmToolCommand.java +++ b/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/EvmToolCommand.java @@ -97,7 +97,7 @@ import picocli.CommandLine.Option; descriptionHeading = "%nDescription:%n%n", optionListHeading = "%nOptions:%n", footerHeading = "%n", - footer = "Hyperledger Besu is licensed under the Apache License 2.0", + footer = "Besu is licensed under the Apache License 2.0", subcommands = { BenchmarkSubCommand.class, B11rSubCommand.class, diff --git a/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/VersionProvider.java b/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/VersionProvider.java index 6f3ff3307..b3e9639b9 100644 --- a/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/VersionProvider.java +++ b/ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/VersionProvider.java @@ -19,11 +19,10 @@ import org.hyperledger.besu.BesuInfo; import picocli.CommandLine; /** - * The VersionProvider class is responsible for providing the version of the Hyperledger Besu EVM - * tool. It implements the IVersionProvider interface from the picocli library. + * The VersionProvider class is responsible for providing the version of the Besu EVM tool. It + * implements the IVersionProvider interface from the picocli library. * - *

The getVersion method returns a string array containing the version of the Hyperledger Besu - * EVM tool. + *

The getVersion method returns a string array containing the version of the Besu EVM tool. */ public class VersionProvider implements CommandLine.IVersionProvider { @@ -34,12 +33,12 @@ public class VersionProvider implements CommandLine.IVersionProvider { public VersionProvider() {} /** - * This method returns the version of the Hyperledger Besu EVM tool. + * This method returns the version of the Besu EVM tool. * - * @return A string array containing the version of the Hyperledger Besu EVM tool. + * @return A string array containing the version of the Besu EVM tool. */ @Override public String[] getVersion() { - return new String[] {"Hyperledger Besu evm " + BesuInfo.shortVersion()}; + return new String[] {"Besu evm " + BesuInfo.shortVersion()}; } }