Remove Lombok

This commit is contained in:
Andy Wilkinson
2018-09-06 13:25:38 +01:00
parent 408943fbb5
commit 2777495c38
13 changed files with 186 additions and 52 deletions

View File

@@ -16,9 +16,6 @@
package io.spring.issuebot.triage;
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
@@ -28,8 +25,6 @@ import org.springframework.boot.context.properties.EnableConfigurationProperties
*
* @author Andy Wilkinson
*/
@Getter
@Setter
@ConfigurationProperties(prefix = "issuebot.triage")
class TriageProperties {
@@ -38,4 +33,12 @@ class TriageProperties {
*/
private String label;
public String getLabel() {
return this.label;
}
public void setLabel(String label) {
this.label = label;
}
}