simplify: GetHashForFile is just a wrapper for FILEMAN->GetFileHash; hash values are passed directly from the driver

This commit is contained in:
Glenn Maynard
2004-10-01 08:54:10 +00:00
parent b53fa472fc
commit c08e4ecdbd
+1 -1
View File
@@ -717,7 +717,7 @@ void FlushDirCache()
unsigned int GetHashForFile( const CString &sPath )
{
return GetHashForString( sPath ) + FILEMAN->GetFileHash( sPath );
return FILEMAN->GetFileHash( sPath );
}
unsigned int GetHashForDirectory( const CString &sDir )