Commit 347ee25a authored by Devon Carew's avatar Devon Carew

Merge pull request #2093 from devoncarew/fix_assert

fix a checked mode assertion
parents 63f941bc a49e4510
...@@ -146,8 +146,8 @@ class ApplicationPackageStore { ...@@ -146,8 +146,8 @@ class ApplicationPackageStore {
case TargetPlatform.iOS: case TargetPlatform.iOS:
case TargetPlatform.iOSSimulator: case TargetPlatform.iOSSimulator:
assert(iOS == null); if (iOS == null)
iOS = new IOSApp.fromBuildConfiguration(config); iOS = new IOSApp.fromBuildConfiguration(config);
break; break;
case TargetPlatform.mac: case TargetPlatform.mac:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment