Amido.PreProcessor.Cmd.PreProcessRunner.ResolvePath C# (CSharp) Method

ResolvePath() private method

private ResolvePath ( string rootPath, string childPath ) : string
rootPath string
childPath string
return string
        private string ResolvePath(string rootPath, string childPath)
        {
            if (childPath ==null)
            {
                return null;
            }

            return fileSystem.CombinePath(rootPath, childPath);
        }