Remove stale function Connection::fixDefaultIJ()

This commit is contained in:
Joakim Hove 2018-06-26 09:57:09 +02:00
parent 8895ee171a
commit 6461cc2a81
2 changed files with 0 additions and 9 deletions

View File

@ -59,7 +59,6 @@ namespace Opm {
double getDiameter() const;
double getSkinFactor() const;
int getSatTableId() const;
void fixDefaultIJ(int wellHeadI , int wellHeadJ);
bool attachedToSegment() const;
WellCompletion::DirectionEnum getDirection() const;

View File

@ -75,14 +75,6 @@ namespace Opm {
}
void Connection::fixDefaultIJ(int wellHeadI , int wellHeadJ) {
if (m_i < 0)
m_i = wellHeadI;
if (m_j < 0)
m_j = wellHeadJ;
}
int Connection::getI() const {
return m_i;