1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

updates to static pipeline

This commit is contained in:
kayone
2014-08-30 13:40:21 -07:00
parent 059028da02
commit dbcabd6df6
7 changed files with 58 additions and 48 deletions
@@ -51,14 +51,5 @@ namespace NzbDrone.Api.Frontend.Mappers
return File.OpenRead(filePath);
}
protected static Stream StringToStream(string text)
{
var stream = new MemoryStream();
var writer = new StreamWriter(stream);
writer.Write(text);
writer.Flush();
stream.Position = 0;
return stream;
}
}
}