in src/com/intellij/vssSupport/commands/CheckinFileCommand.java [66:85]
public void everythingFinishedImpl( final String output )
{
int exitCode = getExitCode();
if( isNotExistingMessage(output) || isConflictsMessage(output) ||
isNoConflictMessage(output) || isHasBeenDeletedMessage(output) ||
( isNotFromCurrentFolderMessage(output) && !suppressWarnOnOtherFolder ) ||
isNotCurrentlyCheckedOutMessage(output) || isAlreadyCheckedOutMessage(output) ||
VssUtil.EXIT_CODE_WARNING == exitCode )
{
addWarning(output);
}
else
if( isProperlyMergedRequest(output) ) {
onProperlyMerged();
}
else
if( processQuestion(output) ){
}
}