You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2022/01/30 20:25:58 UTC

[avro] branch branch-1.11 updated: AVRO-3325 Removed suppression of CA2225 (#1476)

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

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


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

commit dd33275ca8eda2831f7acbbdb2c0276ea9a9e544
Author: Kyle Schoonover <ky...@minmaxcorp.com>
AuthorDate: Sun Jan 30 12:25:27 2022 -0800

    AVRO-3325 Removed suppression of CA2225 (#1476)
    
    Co-authored-by: Kyle T. Schoonover <Ky...@nordstrom.com>
    (cherry picked from commit 7ee056890cc44f956ee3a46a3663132a3b688655)
---
 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
 }