You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2023/05/16 22:12:46 UTC

[lucenenet] branch master updated: Lucene.Net.Store (BaseDirectory + BaseDirectoryWrapper): Fixed XML comments so they don't produce warnings

This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git


The following commit(s) were added to refs/heads/master by this push:
     new 51cc7418a Lucene.Net.Store (BaseDirectory + BaseDirectoryWrapper): Fixed XML comments so they don't produce warnings
51cc7418a is described below

commit 51cc7418adf9da96cd37dd64ff5085d752a54074
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Wed May 17 04:13:03 2023 +0700

    Lucene.Net.Store (BaseDirectory + BaseDirectoryWrapper): Fixed XML comments so they don't produce warnings
---
 src/Lucene.Net.TestFramework/Store/BaseDirectoryWrapper.cs | 4 ++--
 src/Lucene.Net/Store/BaseDirectory.cs                      | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/Lucene.Net.TestFramework/Store/BaseDirectoryWrapper.cs b/src/Lucene.Net.TestFramework/Store/BaseDirectoryWrapper.cs
index ea72bc47b..58dccb516 100644
--- a/src/Lucene.Net.TestFramework/Store/BaseDirectoryWrapper.cs
+++ b/src/Lucene.Net.TestFramework/Store/BaseDirectoryWrapper.cs
@@ -43,7 +43,7 @@ namespace Lucene.Net.Store
         /// Atomically sets the value to the given updated value
         /// if the current value <c>==</c> the expected value.
         /// <para/>
-        /// Expert: Use this in the <see cref="Dispose(bool)"/> call to skip
+        /// Expert: Use this in the <see cref="Directory.Dispose(bool)"/> call to skip
         /// duplicate calls by using the folling if block to guard the
         /// dispose logic.
         /// <code>
@@ -97,7 +97,7 @@ namespace Lucene.Net.Store
         /// <summary>
         /// Gets a value indicating whether the current <see cref="Directory"/> instance is open.
         /// <para/>
-        /// Expert: This is useful for implementing the <see cref="EnsureOpen()"/> logic.
+        /// Expert: This is useful for implementing the <see cref="Directory.EnsureOpen()"/> logic.
         /// </summary>
         public virtual bool IsOpen
         {
diff --git a/src/Lucene.Net/Store/BaseDirectory.cs b/src/Lucene.Net/Store/BaseDirectory.cs
index 480ff8556..be81fc06d 100644
--- a/src/Lucene.Net/Store/BaseDirectory.cs
+++ b/src/Lucene.Net/Store/BaseDirectory.cs
@@ -50,7 +50,7 @@ namespace Lucene.Net.Store
         /// Atomically sets the value to the given updated value
         /// if the current value <c>==</c> the expected value.
         /// <para/>
-        /// Expert: Use this in the <see cref="Dispose(bool)"/> call to skip
+        /// Expert: Use this in the <see cref="Directory.Dispose(bool)"/> call to skip
         /// duplicate calls by using the folling if block to guard the
         /// dispose logic.
         /// <code>