AB3594 - Post review fixes.. Also removed the Current class from abstractions, and injected the factory into config

This commit is contained in:
Bjarke Berg
2019-11-18 14:11:50 +01:00
parent 4338a8f32d
commit 4c05af7b9d
44 changed files with 93 additions and 154 deletions

View File

@@ -4,7 +4,7 @@
/// This is used to supply optional/default values when using InnerTextConfigurationElement
/// </summary>
/// <typeparam name="T"></typeparam>
public class OptionalInnerTextConfigurationElement<T> : InnerTextConfigurationElement<T>
internal class OptionalInnerTextConfigurationElement<T> : InnerTextConfigurationElement<T>
{
private readonly InnerTextConfigurationElement<T> _wrapped;
private readonly T _defaultValue;