#74 -- fix merge

This commit is contained in:
Anton Romanov 2022-10-25 15:41:20 +04:00
parent 12c28b9ba0
commit 591f183e8b
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ public class AddRuleForm {
public AddRuleForm() {
}
public AddRuleForm(Rule rule) {
public AddRuleForm(DbRule rule) {
this.ruleId = rule.getId();
this.firstAntecedentId = rule.getFirstAntecedent().name();
this.secondAntecedentId = rule.getSecondAntecedent().name();

View File

@ -45,7 +45,7 @@ public class RuleService {
}
}
public Rule findById(Integer id) {
public DbRule findById(Integer id) {
return ruleRepository.getOne(id);
}