Browse Source

make SyncRoot instance level

af/merge-core
Scott Williams 9 years ago
parent
commit
e033f84b50
  1. 2
      src/ImageSharp/Configuration.cs

2
src/ImageSharp/Configuration.cs

@ -26,7 +26,7 @@ namespace ImageSharp
/// <summary>
/// An object that can be used to synchronize access to the <see cref="Configuration"/>.
/// </summary>
private static readonly object SyncRoot = new object();
private readonly object SyncRoot = new object();
/// <summary>
/// The list of supported <see cref="IImageFormat"/>.

Loading…
Cancel
Save