Skip to content

Commit

Permalink
removing unnecessary constructors again
Browse files Browse the repository at this point in the history
  • Loading branch information
shoeffner committed Oct 15, 2016
1 parent cac2c3f commit c7896a8
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,6 @@ public class Event implements Cloneable {
@ApiModelProperty(value = "payload for the event; defaults to an empty String.", dataType = "String")
private Payload payload = Payload.valueOf("");

public Event() {
this(Event.Name.valueOf(IMPRESSION));
}

public Event(Event.Name name) {
setName(name);
}

public Date getTimestamp() {
return timestamp;
}
Expand Down

0 comments on commit c7896a8

Please sign in to comment.