Skip to content

Commit

Permalink
corrections
Browse files Browse the repository at this point in the history
Signed-off-by: RALAMBOTIANA MIORA <miora.ralambotiana@rte-france.com>
  • Loading branch information
miovd committed Mar 23, 2020
1 parent c5b7e41 commit c5238aa
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,20 @@ public class ShuntCompensatorLinearModelAdderAdapter implements ShuntCompensator

@Override
public ShuntCompensatorLinearModelAdder setbPerSection(double bPerSection) {
return delegate.setbPerSection(bPerSection);
delegate.setbPerSection(bPerSection);
return this;
}

@Override
public ShuntCompensatorLinearModelAdder setgPerSection(double gPerSection) {
return delegate.setgPerSection(gPerSection);
delegate.setgPerSection(gPerSection);
return this;
}

@Override
public ShuntCompensatorLinearModelAdder setMaximumSectionCount(int maximumSectionCount) {
return delegate.setMaximumSectionCount(maximumSectionCount);
delegate.setMaximumSectionCount(maximumSectionCount);
return this;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,20 @@ class SectionAdderAdapter implements SectionAdder {

@Override
public SectionAdder setSectionNum(int sectionNum) {
return delegate.setSectionNum(sectionNum);
delegate.setSectionNum(sectionNum);
return this;
}

@Override
public SectionAdder setB(double b) {
return delegate.setB(b);
delegate.setB(b);
return this;
}

@Override
public SectionAdder setG(double g) {
return delegate.setG(g);
delegate.setG(g);
return this;
}

@Override
Expand Down

0 comments on commit c5238aa

Please sign in to comment.