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 293f8c9 commit 3ceb782
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

1 comment on commit 3ceb782

@sbrannen
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm probably always going to forget that.

Thanks for adding it. 👍

Please sign in to comment.