Skip to content

Commit 5d0da8e

Browse files
committed
Make method and property public for use in PCF template
[#157994032] References #97
1 parent 988a2bf commit 5d0da8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/rabbitmq/perf/PerfTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ private static void usage(Options options) {
339339
formatter.printHelp("<program>", options);
340340
}
341341

342-
static Options getOptions() {
342+
public static Options getOptions() {
343343
Options options = new Options();
344344
options.addOption(new Option("?", "help", false,"show usage"));
345345
options.addOption(new Option("d", "id", true, "test ID"));
@@ -696,7 +696,7 @@ public void exit(int status) {
696696

697697
}
698698

699-
static Function<String, String> LONG_OPTION_TO_ENVIRONMENT_VARIABLE = option ->
699+
public static Function<String, String> LONG_OPTION_TO_ENVIRONMENT_VARIABLE = option ->
700700
option.replace('-', '_').toUpperCase(Locale.ENGLISH);
701701

702702
static Function<String, String> ENVIRONMENT_VARIABLE_PREFIX = name -> {

0 commit comments

Comments
 (0)