Fixed fields missing the readonly modifier
This commit is contained in:
@@ -25,7 +25,7 @@ namespace OpenRA
|
||||
public class ActorReference : IEnumerable
|
||||
{
|
||||
public string Type;
|
||||
Lazy<TypeDictionary> initDict;
|
||||
readonly Lazy<TypeDictionary> initDict;
|
||||
|
||||
internal TypeDictionary InitDict => initDict.Value;
|
||||
|
||||
|
||||
@@ -34,8 +34,8 @@ namespace OpenRA
|
||||
readonly SheetBuilder sheetBuilder;
|
||||
Thread previewLoaderThread;
|
||||
bool previewLoaderThreadShutDown = true;
|
||||
object syncRoot = new object();
|
||||
Queue<MapPreview> generateMinimap = new Queue<MapPreview>();
|
||||
readonly object syncRoot = new object();
|
||||
readonly Queue<MapPreview> generateMinimap = new Queue<MapPreview>();
|
||||
|
||||
public Dictionary<string, string> StringPool { get; } = new Dictionary<string, string>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user