Skip to content

Commit

Permalink
Removed some comment statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
albert-github committed Nov 29, 2014
1 parent fd91442 commit 222753a
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6564,14 +6564,9 @@ bool checkExtension(const char *fName, const char *ext)
return (QCString(fName).right(QCString(ext).length())==ext);
}

//QCString stripExtension(const char *fName, const char *ext)
QCString stripExtensionGeneral(const char *fName, const char *ext)
{
QCString result=fName;
//if (result.right(Doxygen::htmlFileExtension.length())==Doxygen::htmlFileExtension)
//{
//result=result.left(result.length()-Doxygen::htmlFileExtension.length());
//}
if (result.right(QCString(ext).length())==QCString(ext))
{
result=result.left(result.length()-QCString(ext).length());
Expand Down

0 comments on commit 222753a

Please sign in to comment.