Skip to content

Commit

Permalink
v4.0.6: make Distribution class public
Browse files Browse the repository at this point in the history
  • Loading branch information
gabibeyo committed May 4, 2022
1 parent b576e6f commit bc2d678
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.imperva.stepping</groupId>
<artifactId>stepping</artifactId>
<version>4.0.5</version>
<version>4.0.6</version>
<name>Stepping</name>
<distributionManagement>
<snapshotRepository>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/imperva/stepping/Distribution.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ public class Distribution {
private IStepDecorator iStepDecorator;
private String subject;

Distribution() {
public Distribution() {
}

Distribution(IStepDecorator iStepDecorator, Data data, String subject) {
public Distribution(IStepDecorator iStepDecorator, Data data, String subject) {

this.iStepDecorator = iStepDecorator;
this.data = data;
Expand Down

0 comments on commit bc2d678

Please sign in to comment.