Skip to content

Commit a62b606

Browse files
committed
Testing fill numeric defaults past min-fields
1 parent b99411d commit a62b606

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/EnergyPlus/InputProcessing/InputProcessor.cc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -868,11 +868,7 @@ void InputProcessor::setObjectItemValue(EnergyPlusData &state,
868868
}
869869
if (is_AlphaBlank) AlphaBlank()(alpha_index) = true;
870870
} else if (field_type == "n") {
871-
if (within_max_fields) {
872-
findDefault(Numbers(numeric_index), schema_field_obj);
873-
} else {
874-
Numbers(numeric_index) = 0;
875-
}
871+
findDefault(Numbers(numeric_index), schema_field_obj);
876872
if (is_NumBlank) NumBlank()(numeric_index) = true;
877873
}
878874
}

0 commit comments

Comments
 (0)