Remove duplicate properties field

fix/operation_log_issue
Pahansith Gunathilake 5 months ago
parent 8fd032c336
commit 1171086eb7

@ -22,21 +22,10 @@ import java.util.List;
public class ConfigOperation extends Operation {
private final transient List<Property> properties;
public ConfigOperation() {
properties = new ArrayList<>();
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() {
return Type.CONFIG;
}

Loading…
Cancel
Save