This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new 7ee0568  AVRO-3325 Removed suppression of CA2225 (#1476)
7ee0568 is described below

commit 7ee056890cc44f956ee3a46a3663132a3b688655
Author: Kyle Schoonover <[email protected]>
AuthorDate: Sun Jan 30 12:25:27 2022 -0800

    AVRO-3325 Removed suppression of CA2225 (#1476)
    
    Co-authored-by: Kyle T. Schoonover <[email protected]>
---
 lang/csharp/src/apache/main/AvroDecimal.cs | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lang/csharp/src/apache/main/AvroDecimal.cs 
b/lang/csharp/src/apache/main/AvroDecimal.cs
index b05c433..81b6755 100644
--- a/lang/csharp/src/apache/main/AvroDecimal.cs
+++ b/lang/csharp/src/apache/main/AvroDecimal.cs
@@ -26,7 +26,6 @@ namespace Avro
     /// Represents a big decimal.
     /// </summary>
 #pragma warning disable CS1591 // Missing XML comment for publicly visible 
type or member
-#pragma warning disable CA2225 // Operator overloads have named alternates
     public struct AvroDecimal : IConvertible, IFormattable, IComparable, 
IComparable<AvroDecimal>, IEquatable<AvroDecimal>
     {
         /// <summary>
@@ -794,6 +793,5 @@ namespace Avro
             return bytes;
         }
     }
-#pragma warning restore CA2225 // Operator overloads have named alternates
 #pragma warning restore CS1591 // Missing XML comment for publicly visible 
type or member
 }

Reply via email to