Redo Reformat and cleanup.

Rider EAP was having a bug interpreting .editorconfig that didn't generate the code style as we wanted.
This is now done with Rider-stable.
This commit is contained in:
2023-10-04 17:34:40 +01:00
parent bc8bf7a2dc
commit 7363a5d9c5
453 changed files with 7241 additions and 7126 deletions

View File

@@ -52,14 +52,12 @@ public sealed partial class ISO9660
ApplicationIdentifier = StringHandlers.CToString(pvd.application_id, encoding).TrimEnd()
};
if(pvd.creation_date[0] == '0' ||
pvd.creation_date[0] == 0x00)
if(pvd.creation_date[0] == '0' || pvd.creation_date[0] == 0x00)
decodedVd.CreationTime = DateTime.MinValue;
else
decodedVd.CreationTime = DateHandlers.Iso9660ToDateTime(pvd.creation_date);
if(pvd.modification_date[0] == '0' ||
pvd.modification_date[0] == 0x00)
if(pvd.modification_date[0] == '0' || pvd.modification_date[0] == 0x00)
decodedVd.HasModificationTime = false;
else
{
@@ -67,8 +65,7 @@ public sealed partial class ISO9660
decodedVd.ModificationTime = DateHandlers.Iso9660ToDateTime(pvd.modification_date);
}
if(pvd.expiration_date[0] == '0' ||
pvd.expiration_date[0] == 0x00)
if(pvd.expiration_date[0] == '0' || pvd.expiration_date[0] == 0x00)
decodedVd.HasExpirationTime = false;
else
{
@@ -76,8 +73,7 @@ public sealed partial class ISO9660
decodedVd.ExpirationTime = DateHandlers.Iso9660ToDateTime(pvd.expiration_date);
}
if(pvd.effective_date[0] == '0' ||
pvd.effective_date[0] == 0x00)
if(pvd.effective_date[0] == '0' || pvd.effective_date[0] == 0x00)
decodedVd.HasEffectiveTime = false;
else
{