Remove Lombok
This commit is contained in:
@@ -20,14 +20,12 @@ import java.time.OffsetDateTime;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonCreator;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* An event that has been performed on an {@link Issue}.
|
||||
*
|
||||
* @author Andy Wilkinson
|
||||
*/
|
||||
@Getter
|
||||
public class Event {
|
||||
|
||||
private final Type type;
|
||||
@@ -51,6 +49,18 @@ public class Event {
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
public Type getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public OffsetDateTime getCreationTime() {
|
||||
return this.creationTime;
|
||||
}
|
||||
|
||||
public Label getLabel() {
|
||||
return this.label;
|
||||
}
|
||||
|
||||
/**
|
||||
* The type of an {@link Event}.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user