We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 517ec72 commit ff1d857Copy full SHA for ff1d857
src/Nancy.Rdf/DictionaryNamespaceManager.cs
@@ -9,7 +9,6 @@ namespace Nancy.Rdf
9
/// <summary>
10
/// Dictionary-backed <see cref="INamespaceManager"/>
11
/// </summary>
12
- [NullGuard(ValidationFlags.AllPublic)]
13
internal class DictionaryNamespaceManager : INamespaceManager
14
{
15
private readonly IDictionary<string, Uri> namespaces;
@@ -23,7 +22,7 @@ public DictionaryNamespaceManager()
23
22
}
24
25
/// <inheritdoc />
26
- public Uri BaseUri { get; private set; }
+ public Uri BaseUri { [return: AllowNull] get; private set; }
27
28
29
public IEnumerator<NamespaceMap> GetEnumerator()
0 commit comments