mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix wrongly marked nullable strings.
This commit is contained in:
@@ -784,7 +784,7 @@ namespace Aaru.DiscImages
|
||||
DataFileCharacteristics splitStartChars =
|
||||
_filePaths.FirstOrDefault(f => Path.GetExtension(f.FilePath).ToLowerInvariant() == ".b00");
|
||||
|
||||
string? filename = Path.GetFileNameWithoutExtension(splitStartChars.FilePath);
|
||||
string filename = Path.GetFileNameWithoutExtension(splitStartChars.FilePath);
|
||||
bool lowerCaseExtension = false;
|
||||
bool lowerCaseFileName = false;
|
||||
string basePath;
|
||||
|
||||
@@ -469,7 +469,7 @@ namespace Aaru.Tests.WritableImages
|
||||
filter = filtersList.GetFilter(outputPath);
|
||||
filter.Open(outputPath);
|
||||
|
||||
string? tmpFolder = Path.GetDirectoryName(outputPath);
|
||||
string tmpFolder = Path.GetDirectoryName(outputPath);
|
||||
Environment.CurrentDirectory = tmpFolder;
|
||||
|
||||
var image = Activator.CreateInstance(OutputPlugin.GetType()) as IOpticalMediaImage;
|
||||
|
||||
Reference in New Issue
Block a user