Rewrite UpgradeManager implementation to suit conditions.

This commit is contained in:
Paul Chote
2016-11-19 16:18:06 +00:00
parent 05187f5828
commit 3f0b33992c
17 changed files with 219 additions and 160 deletions

View File

@@ -21,11 +21,11 @@ namespace OpenRA.Test
[TestFixture]
public class BooleanExpressionTest
{
Dictionary<string, bool> testValues = new Dictionary<string, bool>()
IReadOnlyDictionary<string, bool> testValues = new ReadOnlyDictionary<string, bool>(new Dictionary<string, bool>()
{
{ "true", true },
{ "false", false }
};
});
void AssertFalse(string expression)
{