Skip to content

Commit 993b70a

Browse files
committed
junit: Make internal classes package-private
This removes the classes from generated javadocs.
1 parent b34d897 commit 993b70a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/main/java/com/code_intelligence/jazzer/junit/AgentConfiguringArgumentsProvider.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
import org.junit.jupiter.params.provider.ArgumentsProvider;
2323
import org.junit.jupiter.params.support.AnnotationConsumer;
2424

25-
public class AgentConfiguringArgumentsProvider
26-
implements ArgumentsProvider, AnnotationConsumer<FuzzTest> {
25+
class AgentConfiguringArgumentsProvider implements ArgumentsProvider, AnnotationConsumer<FuzzTest> {
2726
private FuzzTest fuzzTest;
2827

2928
@Override

src/main/java/com/code_intelligence/jazzer/junit/JUnitLifecycleMethodsInvoker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* Adapts JUnit BeforeEach and AfterEach callbacks to {@link
3838
* com.code_intelligence.jazzer.driver.FuzzTargetRunner} lifecycle hooks.
3939
*/
40-
public class JUnitLifecycleMethodsInvoker implements LifecycleMethodsInvoker {
40+
class JUnitLifecycleMethodsInvoker implements LifecycleMethodsInvoker {
4141
private final ThrowingRunnable[] beforeEachExecutionRunnables;
4242

4343
private long timesCalledBetweenExecutions = 0;

0 commit comments

Comments
 (0)