Clean up some static initializers
[mono.git] / mcs / class / corlib / System.Resources / ResourceManager.cs
index 9f8692c3884a6bdbea3f5043e2a31e07c9cfa488..0f9fce9cf0f2af2d2f95d6b7b48b2c03a69832b6 100644 (file)
@@ -45,8 +45,8 @@ namespace System.Resources
        public class ResourceManager
        {
                static readonly object thisLock = new object ();
-               static Hashtable ResourceCache = new Hashtable (); 
-               static Hashtable NonExistent = Hashtable.Synchronized (new Hashtable ());
+               static readonly Hashtable ResourceCache = new Hashtable (); 
+               static readonly Hashtable NonExistent = Hashtable.Synchronized (new Hashtable ());
                public static readonly int HeaderVersionNumber = 1;
                public static readonly int MagicNumber = unchecked ((int) 0xBEEFCACE);