Remove Lombok
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user