1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Remove some unnecessary assertions from StoredSettings

This commit is contained in:
ed 2018-07-26 09:46:46 +01:00
parent c39475019d
commit ac8c1a11fb

View file

@ -326,13 +326,13 @@ Value StoredSettings::getFallbackPathForOS (const Identifier& key, DependencyPat
{
if (os == TargetOS::windows) v = "C:\\SDKs\\PT_90_SDK";
else if (os == TargetOS::osx) v = "~/SDKs/PT_90_SDK";
else jassertfalse; // no RTAS on this OS!
else return {}; // no RTAS on this OS!
}
else if (key == Ids::aaxPath)
{
if (os == TargetOS::windows) v = "C:\\SDKs\\AAX";
else if (os == TargetOS::osx) v = "~/SDKs/AAX";
else jassertfalse; // no AAX on this OS!
else return {}; // no AAX on this OS!
}
else if (key == Ids::androidSDKPath)
{
@ -384,7 +384,7 @@ Value StoredSettings::getFallbackPathForOS (const Identifier& key, DependencyPat
}
else
{
jassertfalse; // no Android Studio on this OS!
return {}; // no Android Studio on this OS!
}
}
}