System : Removed unused functions

This commit is contained in:
Magne Sjaastad
2015-10-26 10:16:27 +01:00
parent bbdb730372
commit f3f2cf1590
8 changed files with 1 additions and 92 deletions

View File

@@ -108,25 +108,6 @@ RigGeoMechWellLogExtractor* RimWellLogPlotCollection::findOrCreateExtractor(RimW
return extractor.p();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
RimWellLogPlot* RimWellLogPlotCollection::wellLogPlotFromViewer(RiuWellLogPlot* viewer) const
{
CVF_ASSERT(viewer);
for (size_t pIdx = 0; pIdx < wellLogPlots.size(); pIdx++)
{
RimWellLogPlot* wellLogPlot = wellLogPlots[pIdx];
if (wellLogPlot->viewer() == viewer)
{
return wellLogPlot;
}
}
return NULL;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@@ -53,8 +53,6 @@ public:
void removeExtractors(const RigCaseData* caseData);
void removeExtractors(const RigGeoMechCaseData* caseData);
RimWellLogPlot* wellLogPlotFromViewer(RiuWellLogPlot* viewer) const;
caf::PdmChildArrayField<RimWellLogPlot*> wellLogPlots;
private:
cvf::Collection<RigEclipseWellLogExtractor> m_extractors;