Coverity finding: remove not used function.
authorKim Kulling <kim.kulling@googlemail.com>
Wed, 30 Dec 2015 14:35:26 +0000 (15:35 +0100)
committerKim Kulling <kim.kulling@googlemail.com>
Wed, 30 Dec 2015 14:35:26 +0000 (15:35 +0100)
code/OpenGEXImporter.cpp

index ab702b7..f260cc7 100644 (file)
@@ -802,19 +802,6 @@ void OpenGEXImporter::handleColorNode( ODDLParser::DDLNode *node, aiScene *pScen
 }
 
 //------------------------------------------------------------------------------------------------
-bool isSpecialRootDir(aiString &texName) {
-    if (texName.length < 2) {
-        return false;
-    }
-
-    if (texName.data[0] = '/' || texName.data[1] == '/') {
-        return true;
-    }
-
-    return false;
-}
-
-//------------------------------------------------------------------------------------------------
 void OpenGEXImporter::handleTextureNode( ODDLParser::DDLNode *node, aiScene *pScene ) {
     if( NULL == node ) {
         return;