@@ -32,7 +32,7 @@ internal static class OpenDocumentFormatValidator
3232 /// <param name="rules">ODF validation rules.</param>
3333 /// <returns><c>true</c> if valid, <c>false</c> otherwise.</returns>
3434 /// <throws cref="ArgumentNullException">Thrown if the provided <paramref name="stream"/> is <c>null</c> or empty.</throws>
35- internal static bool IsValidOpenDocumentFormatFile ( string fileName , Stream stream , OdfValidationRules rules )
35+ internal static bool IsValidOpenDocumentFormatFile ( string fileName , Stream stream , OdfRules rules )
3636 {
3737 if ( stream == null || stream . Length == 0 )
3838 {
@@ -52,7 +52,7 @@ internal static bool IsValidOpenDocumentFormatFile(string fileName, Stream strea
5252 /// <param name="archive">ODF ZIP archive.</param>
5353 /// <param name="rules">ODF validation rules.</param>
5454 /// <returns><c>true</c> if valid, <c>false</c> otherwise.</returns>
55- private static bool PerformOdfValidation ( string fileName , ZipArchive archive , OdfValidationRules rules )
55+ private static bool PerformOdfValidation ( string fileName , ZipArchive archive , OdfRules rules )
5656 {
5757 var fileExtension = Path . GetExtension ( fileName ) ;
5858 if ( ! OdfMimetypeMappings . ContainsKey ( fileExtension ) )
@@ -96,7 +96,7 @@ private static bool PerformOdfValidation(string fileName, ZipArchive archive, Od
9696 /// <param name="archive">ODF ZIP archive.</param>
9797 /// <param name="rules">ODF validation rules.</param>
9898 /// <returns><c>true</c> if valid, <c>false</c> otherwise.</returns>
99- private static bool IsValidMimetype ( string fileName , ZipArchive archive , OdfValidationRules rules )
99+ private static bool IsValidMimetype ( string fileName , ZipArchive archive , OdfRules rules )
100100 {
101101 var mimetypeEntry = archive . GetEntry ( MimetypeEntryName ) ;
102102 if ( mimetypeEntry is null )
0 commit comments