Skip to content

Commit

Permalink
Add missing public constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Sep 20, 2021
1 parent ba7f6a7 commit 248ac22
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ public class UniqueIdTrackingListener implements TestExecutionListener {

private boolean enabled;

public UniqueIdTrackingListener() {
// to avoid missing-explicit-ctor warning
}

@Override
public void testPlanExecutionStarted(TestPlan testPlan) {
this.enabled = testPlan.getConfigurationParameters().getBoolean(LISTENER_ENABLED_PROPERTY_NAME).orElse(false);
Expand Down

0 comments on commit 248ac22

Please sign in to comment.