Janitor: remove empty implementation of updateFilePathsFromProjectPath.

This commit is contained in:
Kristian Bendiksen 2022-06-17 14:08:39 +02:00
parent d854a3d3e7
commit e7ff6f8a7b
3 changed files with 0 additions and 18 deletions

View File

@ -299,12 +299,6 @@ void RimFractureTemplateCollection::updateFilePathsFromProjectPath( const QStrin
{
for ( RimFractureTemplate* f : m_fractureDefinitions() )
{
RimStimPlanFractureTemplate* stimPlanFracture = dynamic_cast<RimStimPlanFractureTemplate*>( f );
if ( stimPlanFracture )
{
stimPlanFracture->updateFilePathsFromProjectPath( newProjectPath, oldProjectPath );
}
RimEllipseFractureTemplate* ellipseFracture = dynamic_cast<RimEllipseFractureTemplate*>( f );
if ( ellipseFracture )
{

View File

@ -192,16 +192,6 @@ QString RimStimPlanFractureTemplate::fileName()
return m_stimPlanFileName().path();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimStimPlanFractureTemplate::updateFilePathsFromProjectPath( const QString& newProjectPath,
const QString& oldProjectPath )
{
// m_stimPlanFileName = RimTools::relocateFile( m_stimPlanFileName(), newProjectPath, oldProjectPath, nullptr,
// nullptr );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@ -61,8 +61,6 @@ public:
void setFileName( const QString& fileName );
QString fileName();
void updateFilePathsFromProjectPath( const QString& newProjectPath, const QString& oldProjectPath );
std::pair<double, double> wellPathDepthAtFractureRange() const override;
QString wellPathDepthAtFractureUiName() const override;