Rename helper: matchingProperties() -> historyProperties()

This more clearly reflects its actual purpose.

Suggested by: [at] joakim-hove
This commit is contained in:
Bård Skaflestad 2014-06-27 10:42:26 +02:00
parent 1111f87aa7
commit 07c7b59702

View File

@ -168,7 +168,7 @@ namespace Opm {
namespace {
WellProductionProperties
matchingProperties(DeckRecordConstPtr record)
historyProperties(DeckRecordConstPtr record)
{
WellProductionProperties p;
@ -241,7 +241,7 @@ namespace Opm {
p = predictionProperties(record);
}
else {
p = matchingProperties(record);
p = historyProperties(record);
}
p.WaterRate = record->getItem("WRAT")->getSIDouble(0);