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

Projucer: Removed an unused function

This commit is contained in:
Tom Poole 2019-12-12 21:59:18 +00:00
parent fd60158af1
commit 147bbef730

View file

@ -1220,15 +1220,6 @@ private:
return getActivityClassString().replaceCharacter ('.', '/');
}
static LibraryModule* getCoreModule (const OwnedArray<LibraryModule>& modules)
{
for (int i = modules.size(); --i >= 0;)
if (modules.getUnchecked (i)->getID() == "juce_core")
return modules.getUnchecked (i);
return nullptr;
}
//==============================================================================
String getNativeModuleBinaryName (const AndroidBuildConfiguration& config) const
{