Removed debugging messages

This commit is contained in:
Robert Osfield
2005-02-11 09:59:16 +00:00
parent dd0c29d19b
commit 6747e6ff1f

View File

@@ -20,8 +20,6 @@
using std::strlen;
#endif
#include <osg/Notify>
using namespace std;
std::string osgDB::getFilePath(const std::string& fileName)
@@ -73,8 +71,6 @@ std::string osgDB::convertFileNameToWindowsStyle(const std::string& fileName)
std::string osgDB::convertFileNameToUnixStyle(const std::string& fileName)
{
osg::notify(osg::NOTICE)<<"convertFileNameToUnixStyle("<<fileName<<")"<<std::endl;
std::string new_fileName(fileName);
std::string::size_type slash = 0;
@@ -83,8 +79,6 @@ std::string osgDB::convertFileNameToUnixStyle(const std::string& fileName)
new_fileName[slash]='/';
}
osg::notify(osg::NOTICE)<<"convertFileNameToUnixStyle("<<new_fileName<<")"<<std::endl;
return new_fileName;
}