[longomatch] Fix call to NewGuid



commit c4612f57d145a27d86786a2753763846c230375f
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Tue Oct 28 10:40:34 2014 +0100

    Fix call to NewGuid

 LongoMatch.Migration/Converter.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/LongoMatch.Migration/Converter.cs b/LongoMatch.Migration/Converter.cs
index 51401ea..67d84af 100644
--- a/LongoMatch.Migration/Converter.cs
+++ b/LongoMatch.Migration/Converter.cs
@@ -152,7 +152,7 @@ namespace LongoMatch.Migration
                        }
                        dashboard.ID = cats.ID;
                        if (dashboard.ID == Guid.Empty) {
-                               dashboard.ID = Guid.NewGuid;
+                               dashboard.ID = Guid.NewGuid ();
                        }
                        dashboard.GamePeriods = new List<string> { "1", "2" };
                        


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]