Unverified Commit f9e28e7d authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Do not return null from IosProject.isSwift (#33450)

parent 8e3e0a89
...@@ -305,7 +305,7 @@ class IosProject { ...@@ -305,7 +305,7 @@ class IosProject {
} }
/// True, if the host app project is using Swift. /// True, if the host app project is using Swift.
bool get isSwift => buildSettings?.containsKey('SWIFT_VERSION'); bool get isSwift => buildSettings?.containsKey('SWIFT_VERSION') ?? false;
/// The build settings for the host app of this project, as a detached map. /// The build settings for the host app of this project, as a detached map.
/// ///
......
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