Keep the comment...updated?

Should we just remove this?
This commit is contained in:
Jason Felds
2013-05-01 23:13:30 -04:00
parent fb66e2139f
commit 2baca75e2b
+3 -3
View File
@@ -221,11 +221,11 @@ static bool ExportPackage( RString sPackageName, RString sDirToExport, RString &
GetDirListingRecursive( sDirToExport, "*", vs ); GetDirListingRecursive( sDirToExport, "*", vs );
SMPackageUtil::StripIgnoredSmzipFiles( vs ); SMPackageUtil::StripIgnoredSmzipFiles( vs );
LOG->Trace("Adding files..."); LOG->Trace("Adding files...");
FOREACH( RString, vs, s ) for (RString &s : vs)
{ {
if( !zip.AddFile( *s ) ) if( !zip.AddFile( s ) )
{ {
sErrorOut = ssprintf( "Couldn't add file: %s", s->c_str() ); sErrorOut = ssprintf( "Couldn't add file: %s", s.c_str() );
return false; return false;
} }
} }