//based upon the first if they were all created after this fix for GUVNOR-1139 was implemented.
List<FactData> existingFactData = scenario.getFactTypesToFactData().get( factType );
if ( existingFactData != null && existingFactData.size() > 0 ) {
for ( Field field : existingFactData.get( 0 ).getFieldData() ) {
factData.getFieldData().add(
new FieldPlaceHolder( field.getName() ) );
}
}
return factData;
}