summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRuslan Baratov <ruslan_baratov@yahoo.com>2014-01-16 17:57:58 (GMT)
committerBrad King <brad.king@kitware.com>2014-01-16 18:43:47 (GMT)
commitd9f1f917c46c8faa4ac02f496d20487882e7f010 (patch)
tree2380107b93c2f0a5ada351b166ba7f799fce5d9c
parent0d2318dedd4c80a85b3b3e337148a9e4f7629549 (diff)
downloadCMake-d9f1f917c46c8faa4ac02f496d20487882e7f010.zip
CMake-d9f1f917c46c8faa4ac02f496d20487882e7f010.tar.gz
CMake-d9f1f917c46c8faa4ac02f496d20487882e7f010.tar.bz2
Xcode: Remove dead code
Variable 'ext' already checked for equality to "xib" so remove the branch that will never be executed.
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index f7a42fc..82466c9 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -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";