Skip to content

Commit 48618ec

Browse files
committed
revert code changes
Signed-off-by: Josh Marinacci <[email protected]>
1 parent 42334e1 commit 48618ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hedera-node/test-clients/src/main/java/com/hedera/services/bdd/suites/fees/SimpleFeesSuite.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ static void beforeAll(@NonNull final TestLifecycle testLifecycle) {
7070
testLifecycle.overrideInClass(Map.of("fees.simpleFeesEnabled", "true"));
7171
}
7272

73-
public static Stream<DynamicTest> runBeforeAfter(@NonNull final SpecOperation... ops) {
73+
static Stream<DynamicTest> runBeforeAfter(@NonNull final SpecOperation... ops) {
7474
List<SpecOperation> opsList = new ArrayList<>();
7575
opsList.add(overriding("fees.simpleFeesEnabled", "false"));
7676
opsList.addAll(Arrays.asList(ops));
@@ -79,7 +79,7 @@ public static Stream<DynamicTest> runBeforeAfter(@NonNull final SpecOperation...
7979
return hapiTest(opsList.toArray(new SpecOperation[opsList.size()]));
8080
}
8181

82-
public static double ucents_to_USD(double amount) {
82+
static double ucents_to_USD(double amount) {
8383
return amount / 100_000.0;
8484
}
8585

0 commit comments

Comments
 (0)