Skip to content

Commit

Permalink
Replace Boolean with boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
bensofficial committed Dec 9, 2024
1 parent 43baceb commit dc0a6ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private static TrustScope getThreadTrustScope(TestContext context) {
.orElse(TrustScope.MINIMAL);
}

public static Boolean isThreadGroupCheckDisabled(TestContext context) {
public static boolean isThreadGroupCheckDisabled(TestContext context) {
return TestContextUtils.findAnnotationIn(context, DisableThreadGroupCheck.class).isPresent();
}
}

0 comments on commit dc0a6ee

Please sign in to comment.