in jet-symbols/src/JetBrains.CommandLine.Symbols/Program.cs [85:98]
private static ICollection<FileSystemPath> LoadPathsFromFile(FileSystemPath inputFilePath)
{
ICollection<FileSystemPath> result = new HashSet<FileSystemPath>();
inputFilePath.ReadTextStream(streamReader =>
{
while (!streamReader.EndOfStream)
{
var fileSystemPath = FileSystemPath.TryParse(streamReader.ReadLine());
if (!fileSystemPath.IsEmpty)
result.Add(fileSystemPath);
}
});
return result;
}