PageRenderTime 50ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/Atlassian.Jira/FileSystem.cs

https://bitbucket.org/yyo/atlassian.net-sdk-v2.0
C# | 16 lines | 15 code | 1 blank | 0 comment | 0 complexity | 539550ebeeeba7a081aac143d13aa349 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;
  6. namespace Atlassian.Jira
  7. {
  8. internal class FileSystem: IFileSystem
  9. {
  10. public byte[] FileReadAllBytes(string path)
  11. {
  12. return File.ReadAllBytes(path);
  13. }
  14. }
  15. }