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

View file

@ -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;
}
}
}