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 fadf29e  AVRO-3326 Updated brace location on constructors (#1477)
fadf29e is described below

commit fadf29e734bbe2774b21cbabd711dc71bccc1008
Author: Kyle Schoonover <[email protected]>
AuthorDate: Sun Jan 30 12:23:35 2022 -0800

    AVRO-3326 Updated brace location on constructors (#1477)
    
    Co-authored-by: Kyle T. Schoonover <[email protected]>
---
 lang/csharp/src/apache/main/AvroDecimal.cs | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/lang/csharp/src/apache/main/AvroDecimal.cs 
b/lang/csharp/src/apache/main/AvroDecimal.cs
index 5814b9b..b05c433 100644
--- a/lang/csharp/src/apache/main/AvroDecimal.cs
+++ b/lang/csharp/src/apache/main/AvroDecimal.cs
@@ -73,28 +73,36 @@ namespace Avro
         /// </summary>
         /// <param name="value">The int value.</param>
         public AvroDecimal(int value)
-            : this(new BigInteger(value), 0) { }
+            : this(new BigInteger(value), 0)
+        {
+        }
 
         /// <summary>
         /// Initializes a new instance of the <see cref="AvroDecimal"/> class 
from a given long.
         /// </summary>
         /// <param name="value">The long value.</param>
         public AvroDecimal(long value)
-            : this(new BigInteger(value), 0) { }
+            : this(new BigInteger(value), 0)
+        {
+        }
 
         /// <summary>
         /// Initializes a new instance of the <see cref="AvroDecimal"/> class 
from a given unsigned int.
         /// </summary>
         /// <param name="value">The unsigned int value.</param>
         public AvroDecimal(uint value)
-            : this(new BigInteger(value), 0) { }
+            : this(new BigInteger(value), 0)
+        {
+        }
 
         /// <summary>
         /// Initializes a new instance of the <see cref="AvroDecimal"/> class 
from a given unsigned long.
         /// </summary>
         /// <param name="value">The unsigned long value.</param>
         public AvroDecimal(ulong value)
-            : this(new BigInteger(value), 0) { }
+            : this(new BigInteger(value), 0)
+        {
+        }
 
         /// <summary>
         /// Initializes a new instance of the <see cref="AvroDecimal"/> class 
from a given <see cref="BigInteger"/>

Reply via email to