ENH: Better handling of removed files and remove warning

This commit is contained in:
Andy Cedilnik 2005-07-22 08:40:16 -04:00
parent 9c8875a621
commit ca90e8002b
1 changed files with 2 additions and 7 deletions

View File

@ -585,11 +585,6 @@ int cmCTestUpdateHandler::ProcessHandler()
std::string upChar = file_update_line.match(1); std::string upChar = file_update_line.match(1);
std::string upFile = file_update_line.match(2); std::string upFile = file_update_line.match(2);
char mod = upChar[0]; char mod = upChar[0];
bool removed = false;
if ( mod != 'D' )
{
removed = true;
}
bool modifiedOrConflict = false; bool modifiedOrConflict = false;
if ( mod != 'M' && mod != 'C' && mod != 'G' ) if ( mod != 'M' && mod != 'C' && mod != 'G' )
{ {
@ -776,9 +771,9 @@ int cmCTestUpdateHandler::ProcessHandler()
comment1 = "Locally modified file\n"; comment1 = "Locally modified file\n";
sauthor1 = "Local User"; sauthor1 = "Local User";
} }
if ( mod == 'R' ) if ( mod == 'D' )
{ {
comment1 = "Removed file\n"; comment1 += " - Removed file\n";
} }
if ( mod == 'C' ) if ( mod == 'C' )
{ {