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> /// <summary>
/// A simple interface representing the filesystem. /// A simple interface representing the filesystem.
/// </summary> /// </summary>
public interface IFileSystem internal interface IFileSystem
{ {
/// <summary> /// <summary>
/// Returns a readable stream as defined by the path. /// Returns a readable stream as defined by the path.

2
src/ImageSharp/IO/LocalFileSystem.cs

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

Loading…
Cancel
Save