Janitor: remove unecessary disabling of auto formatting

This commit is contained in:
Kristian Bendiksen 2023-05-30 13:50:06 +02:00
parent bd1fbcf45a
commit 9719390130

View File

@ -42,23 +42,20 @@ CAF_PDM_SOURCE_INIT( RimSummaryCurveAutoName, "SummaryCurveAutoName" );
//--------------------------------------------------------------------------------------------------
RimSummaryCurveAutoName::RimSummaryCurveAutoName()
{
// clang-format off
CAF_PDM_InitObject("RimSummaryCurveAutoName");
CAF_PDM_InitObject( "RimSummaryCurveAutoName" );
CAF_PDM_InitField( &m_longVectorName, "LongVectorName", true, "Long Vector Name");
CAF_PDM_InitField( &m_vectorName, "VectorName", false, "Vector Name");
CAF_PDM_InitField( &m_unit, "Unit", false, "Unit");
CAF_PDM_InitField( &m_regionNumber, "RegionNumber", true, "Region Number");
CAF_PDM_InitField( &m_groupName, "WellGroupName", true, "Group Name");
CAF_PDM_InitField( &m_wellName, "WellName", true, "Well Name");
CAF_PDM_InitField(&m_wellSegmentNumber, "WellSegmentNumber", true, "Well Segment Number");
CAF_PDM_InitField( &m_lgrName, "LgrName", true, "Lgr Name");
CAF_PDM_InitField( &m_completion, "Completion", true, "I, J, K");
CAF_PDM_InitField( &m_aquiferNumber, "Aquifer", true, "Aquifer Number");
CAF_PDM_InitField(&m_caseName, "CaseName", true, "Case/Ensemble Name");
CAF_PDM_InitField( &m_longVectorName, "LongVectorName", true, "Long Vector Name" );
CAF_PDM_InitField( &m_vectorName, "VectorName", false, "Vector Name" );
CAF_PDM_InitField( &m_unit, "Unit", false, "Unit" );
CAF_PDM_InitField( &m_regionNumber, "RegionNumber", true, "Region Number" );
CAF_PDM_InitField( &m_groupName, "WellGroupName", true, "Group Name" );
CAF_PDM_InitField( &m_wellName, "WellName", true, "Well Name" );
CAF_PDM_InitField( &m_wellSegmentNumber, "WellSegmentNumber", true, "Well Segment Number" );
CAF_PDM_InitField( &m_lgrName, "LgrName", true, "Lgr Name" );
CAF_PDM_InitField( &m_completion, "Completion", true, "I, J, K" );
CAF_PDM_InitField( &m_aquiferNumber, "Aquifer", true, "Aquifer Number" );
// clang-format on
CAF_PDM_InitField( &m_caseName, "CaseName", true, "Case/Ensemble Name" );
if ( RimProject::current() && RimProject::current()->isProjectFileVersionEqualOrOlderThan( "2023.1.0" ) )
{