Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit edab705

Browse files
committed
chore: Make method visibility consistent
1 parent aaef35d commit edab705

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/io/contract_testing/contractcase/BoundaryExceptionMapper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class BoundaryExceptionMapper {
1010

11-
public static String stackTraceToString(Throwable e) {
11+
static String stackTraceToString(Throwable e) {
1212
return Arrays.stream(e.getStackTrace()).map(StackTraceElement::toString).collect(
1313
Collectors.joining("\n"));
1414
}
@@ -33,7 +33,7 @@ static BoundaryFailure mapAsVerifyFailure(Throwable e) {
3333
);
3434
}
3535

36-
public static BoundaryResult mapAsStateFailure(Throwable e) {
36+
static BoundaryResult mapAsStateFailure(Throwable e) {
3737
return new BoundaryFailure(
3838
BoundaryFailureKindConstants.CASE_CONFIGURATION_ERROR,
3939
"State handler failed: " + e.getMessage(),

0 commit comments

Comments
 (0)