We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8dd44b commit 6ff7b5bCopy full SHA for 6ff7b5b
BuildSettingExtractor/BuildSettingCommentGenerator.m
@@ -221,7 +221,9 @@ - (BOOL)loadBuildSettingInfo {
221
dictionary = [self xcspecFileBuildSettingInfoForPath:fullpath];
222
}
223
if (dictionary) {
224
- [infoStringFile addEntriesFromDictionary:dictionary];
+ // Remove empty string values that may be masking backstop values
225
+ NSDictionary *processedDictionary = [dictionary tps_dictionaryByRemovingEmptyStringValues];
226
+ [infoStringFile addEntriesFromDictionary:processedDictionary];
227
228
if (dictionary || foundOne) {
229
foundOne = YES;
0 commit comments