Browse Source

Cosmetics

Piotr Czajkowski 5 months ago
parent
commit
95b753e309
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ExcelORM/ExcelORM/ExcelWriter.cs

+ 1 - 1
ExcelORM/ExcelORM/ExcelWriter.cs

@@ -75,7 +75,7 @@ public class ExcelWriter
     {
         if (!values.Any()) return;
 
-        var rowIndex = 1;
+        int rowIndex;
         var properties = typeof(T).GetProperties();
         List<Mapping>? mapping = [];