JornWildt / Ramone

A C# client framework for consuming HTTP/REST services
Other
61 stars 11 forks source link

Simplify SaveToFile #10

Closed JornWildt closed 10 years ago

JornWildt commented 10 years ago

This piece of code can be simplified

using (var r = RestSession.Bind(message.BOMDocumentUrl).Get())
{
  r.SaveToFile(filename);
}

RestSession.Bind(message.BOMDocumentUrl).SaveToFile(filename);

JornWildt commented 10 years ago

Won't fix