This commit is contained in:
Stephan
2018-05-08 11:06:07 +02:00
parent 389fb100bb
commit 6051891280
10 changed files with 83 additions and 69 deletions

View File

@@ -1,23 +0,0 @@
//using System;
//namespace Umbraco.Core.Models.PublishedContent
//{
// /// <summary>
// /// Provides a ThreadStatic-based implementation of <see cref="IVariationContextAccessor"/>.
// /// </summary>
// /// <remarks>
// /// <para>Something must set the current context.</para>
// /// </remarks>
// public class ThreadStaticVariationContextAccessor : IVariationContextAccessor
// {
// [ThreadStatic]
// private static VariationContext _context;
// /// <inheritdoc />
// public VariationContext VariationContext
// {
// get => _context;
// set => _context = value;
// }
// }
//}