Skip to content

Commit

Permalink
improve SummaryPluginConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHossfeld committed Jul 28, 2024
1 parent af02811 commit 0a31244
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,15 @@

public class SummaryPluginConfig implements PluginConfig {

private boolean removeOnEmptyData = false;
private boolean removeOnEmptyData;

public SummaryPluginConfig() {
this(false);
}

public SummaryPluginConfig(boolean removeOnEmptyData) {
this.removeOnEmptyData = removeOnEmptyData;
}

/**
* @return boolean, true will cause the plugin to remove the summary records for empty data
Expand Down

0 comments on commit 0a31244

Please sign in to comment.