Remove duplicate properties field

This commit is contained in:
Pahansith Gunathilake 2024-05-08 18:08:41 +05:30
parent 8fd032c336
commit 1171086eb7

View File

@ -22,21 +22,10 @@ import java.util.List;
public class ConfigOperation extends Operation { public class ConfigOperation extends Operation {
private final transient List<Property> properties;
public ConfigOperation() { public ConfigOperation() {
properties = new ArrayList<>();
setControl(Control.REPEAT); setControl(Control.REPEAT);
} }
public List<Property> getConfigProperties() {
return properties;
}
public void addConfigProperty(String name, Object value, Class<?> type) {
properties.add(new Property(name, value, type));
}
public Type getType() { public Type getType() {
return Type.CONFIG; return Type.CONFIG;
} }