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:
parent
c39475019d
commit
ac8c1a11fb
1 changed files with 3 additions and 3 deletions
|
|
@ -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!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue