Skip to content

Commit 248ac22

Browse files
committed
Add missing public constructor
1 parent ba7f6a7 commit 248ac22

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

junit-platform-launcher/src/main/java/org/junit/platform/launcher/listeners/UniqueIdTrackingListener.java

+4
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ public class UniqueIdTrackingListener implements TestExecutionListener {
134134

135135
private boolean enabled;
136136

137+
public UniqueIdTrackingListener() {
138+
// to avoid missing-explicit-ctor warning
139+
}
140+
137141
@Override
138142
public void testPlanExecutionStarted(TestPlan testPlan) {
139143
this.enabled = testPlan.getConfigurationParameters().getBoolean(LISTENER_ENABLED_PROPERTY_NAME).orElse(false);

0 commit comments

Comments
 (0)