BatchGuy.App.CreateX264BatchFileForm.MKVMergeWarnings C# (CSharp) Method

MKVMergeWarnings() private method

private MKVMergeWarnings ( WarningCollection warnings ) : void
warnings WarningCollection
return void
        private void MKVMergeWarnings(WarningCollection warnings)
        {
            if (_batchGuyEAC3ToSettings.EAC3ToSettings.EAC3ToOutputPath == _batchGuyEAC3ToSettings.EAC3ToSettings.MKVMergeOutputPath)
            {
                warnings.Add(new Warning() { Id = 0, Description = "The eac3to output path is the same as mkvmerge output path and could have output file name conflicts!" });
            }
        }
CreateX264BatchFileForm