Fix a couple of erroneous assert(trues)
authorJames Ko <jamesqko@gmail.com>
Sat, 9 Apr 2016 14:48:02 +0000 (10:48 -0400)
committerJames Ko <jamesqko@gmail.com>
Sat, 9 Apr 2016 14:48:02 +0000 (10:48 -0400)
Commit migrated from https://github.com/dotnet/coreclr/commit/c92467665a8519fa0c5d9be7b7ec5d760b37d38b

src/coreclr/src/mscorlib/corefx/System/Globalization/DateTimeFormatInfo.cs
src/coreclr/src/mscorlib/src/System/Globalization/DateTimeFormatInfo.cs
src/coreclr/src/mscorlib/src/System/RtType.cs

index cec4b32..ca1caac 100644 (file)
@@ -2712,7 +2712,7 @@ namespace System.Globalization
                 }
                 previousNode = temp;
             };
-            Contract.Assert(true, "The hashtable is full.  This should not happen.");
+            Contract.Assert(false, "The hashtable is full.  This should not happen.");
         }
 
         void InsertHash(TokenHashValue[] hashTable, String str, TokenType tokenType, int tokenValue)
@@ -2800,7 +2800,7 @@ namespace System.Globalization
                 hashcode += hashProbe;
                 if (hashcode >= TOKEN_HASH_SIZE) hashcode -= TOKEN_HASH_SIZE;
             } while (i < TOKEN_HASH_SIZE);
-            Contract.Assert(true, "The hashtable is full.  This should not happen.");
+            Contract.Assert(false, "The hashtable is full.  This should not happen.");
         }
 
         private bool CompareStringIgnoreCaseOptimized(string string1, int offset1, int length1, string string2, int offset2, int length2)
index e911f0e..9adbd66 100644 (file)
@@ -2829,7 +2829,7 @@ namespace System.Globalization {
                 }
                 previousNode = temp;
             } ;
-            Contract.Assert(true, "The hashtable is full.  This should not happen.");
+            Contract.Assert(false, "The hashtable is full.  This should not happen.");
         }
 
         void InsertHash(TokenHashValue[] hashTable, String str, TokenType tokenType, int tokenValue) {
@@ -2922,7 +2922,7 @@ namespace System.Globalization {
                 hashcode += hashProbe;
                 if (hashcode >= TOKEN_HASH_SIZE) hashcode -= TOKEN_HASH_SIZE;
             } while (i < TOKEN_HASH_SIZE);
-            Contract.Assert(true, "The hashtable is full.  This should not happen.");
+            Contract.Assert(false, "The hashtable is full.  This should not happen.");
         }
     }   // class DateTimeFormatInfo
 
index 8478dcd..4018ef2 100644 (file)
@@ -443,7 +443,7 @@ namespace System
                             list = PopulateInterfaces(filter);
                             break;
                         default:
-                            BCLDebug.Assert(true, "Invalid CacheType");
+                            BCLDebug.Assert(false, "Invalid CacheType");
                             break;
                     }