Minor editorconfig change

This commit is contained in:
Matt Nadareski
2026-04-13 10:04:24 -04:00
parent 7d14681fc9
commit 4d5e7eb755

View File

@@ -36,13 +36,11 @@ namespace SabreTools.Wrappers
// Print all information of video partition model
var videoWrapper = new ISO9660(VideoPartition, _dataSource, initialOffset, _dataSource.Length);
if (videoWrapper is not null)
videoWrapper.PrintInformation(builder);
videoWrapper?.PrintInformation(builder);
// Print all information of game partition model
var gameWrapper = new XDVDFS(GamePartition, _dataSource, initialOffset + Constants.XisoOffsets[XGDType], Constants.XisoLengths[XGDType]);
if (gameWrapper is not null)
gameWrapper.PrintInformation(builder);
gameWrapper?.PrintInformation(builder);
}
}
}