Xcode: Remove dead code

Variable 'ext' already checked for equality to "xib" so remove the
branch that will never be executed.
This commit is contained in:
Ruslan Baratov 2014-01-16 21:57:58 +04:00 committed by Brad King
parent 0d2318dedd
commit d9f1f917c4
1 changed files with 0 additions and 4 deletions

View File

@ -778,10 +778,6 @@ GetSourcecodeValueFromFileExtension(const std::string& _ext,
{
sourcecode += ".c.objc";
}
else if(ext == "xib")
{
sourcecode += ".file.xib";
}
else if(ext == "plist")
{
sourcecode += ".text.plist";