[Aaru.Filesystems] Introduced constants for module names

Introduces constant fields for respective debug module names, replacing the hardcoded ones.
This is done to standardize the naming convention, reduce redundancy and potentially avoid any typos or name mismatches across the project.
This change makes the code more maintainable and easier to update in case module names need to be changed.
This commit is contained in:
2023-10-03 17:47:32 +01:00
parent 741bb5389a
commit 4ef3252b24
67 changed files with 721 additions and 687 deletions

View File

@@ -96,4 +96,6 @@ public sealed partial class PascalPlugin : IReadOnlyFilesystem
"debug", false.ToString()
}
};
const string MODULE_NAME = "U.C.S.D. Pascal Plugin";
}