remove Hyperledger from EVM tool logs/docs (#8405)

Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
This commit is contained in:
Sally MacFarlane
2025-03-13 09:23:41 +10:00
committed by GitHub
parent 9bd3c166fc
commit 5215c953e0
2 changed files with 7 additions and 8 deletions

View File

@@ -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,

View File

@@ -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.
*
* <p>The getVersion method returns a string array containing the version of the Hyperledger Besu
* EVM tool.
* <p>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()};
}
}