From 4d5e7eb755aea4f8e3a2cc7d7c85dd9bc58198ed Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 13 Apr 2026 10:04:24 -0400 Subject: [PATCH] Minor editorconfig change --- SabreTools.Wrappers/XboxISO.Printing.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/SabreTools.Wrappers/XboxISO.Printing.cs b/SabreTools.Wrappers/XboxISO.Printing.cs index b911fbee..e4954700 100644 --- a/SabreTools.Wrappers/XboxISO.Printing.cs +++ b/SabreTools.Wrappers/XboxISO.Printing.cs @@ -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); } } }