Browse Source

make file system internal

af/merge-core
Scott Williams 9 years ago
parent
commit
08e3b82171
  1. 2
      src/ImageSharp/IO/IFileSystem.cs
  2. 2
      src/ImageSharp/IO/LocalFileSystem.cs

2
src/ImageSharp/IO/IFileSystem.cs

@ -9,7 +9,7 @@ namespace SixLabors.ImageSharp.IO
/// <summary>
/// A simple interface representing the filesystem.
/// </summary>
public interface IFileSystem
internal interface IFileSystem
{
/// <summary>
/// Returns a readable stream as defined by the path.

2
src/ImageSharp/IO/LocalFileSystem.cs

@ -12,7 +12,7 @@ namespace SixLabors.ImageSharp.IO
/// <summary>
/// A wrapper around the local File apis.
/// </summary>
public class LocalFileSystem : IFileSystem
internal class LocalFileSystem : IFileSystem
{
/// <inheritdoc/>
public Stream OpenRead(string path)

Loading…
Cancel
Save