[longomatch] Implement GetHashCode() to supress warning



commit 5397a7f46729abad7e2bda012424d5ef2a4c64a8
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Sun Jun 27 02:19:48 2010 +0200

    Implement GetHashCode() to supress warning

 LongoMatch/Compat/0.0/Time/Time.cs |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/LongoMatch/Compat/0.0/Time/Time.cs b/LongoMatch/Compat/0.0/Time/Time.cs
index 3ba8e80..298c6d3 100644
--- a/LongoMatch/Compat/0.0/Time/Time.cs
+++ b/LongoMatch/Compat/0.0/Time/Time.cs
@@ -95,7 +95,11 @@ namespace LongoMatch.Compat.v00.TimeNodes
 			}
 			else return false;
 		}
-
+		
+		public override int GetHashCode ()
+		{
+			return base.GetHashCode ();
+		}
 
 		public int CompareTo(object obj) {
 			if (obj is Time)



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