This is an automated email from the ASF dual-hosted git repository.
chtompki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push:
new 3d84087 (docs) minor nits and whitespace addions for readability
3d84087 is described below
commit 3d8408776ea4d281fc68680c4d87483a4ed66883
Author: Rob Tompkins <[email protected]>
AuthorDate: Sun Jul 12 08:43:32 2020 -0400
(docs) minor nits and whitespace addions for readability
---
.../commons/lang3/concurrent/locks/LockingVisitors.java | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
diff --git
a/src/main/java/org/apache/commons/lang3/concurrent/locks/LockingVisitors.java
b/src/main/java/org/apache/commons/lang3/concurrent/locks/LockingVisitors.java
index 1df6152..98d3218 100644
---
a/src/main/java/org/apache/commons/lang3/concurrent/locks/LockingVisitors.java
+++
b/src/main/java/org/apache/commons/lang3/concurrent/locks/LockingVisitors.java
@@ -127,8 +127,10 @@ public class LockingVisitors {
}
/**
+ * <p>
* Provides read (shared, non-exclusive) access to the locked (hidden)
object. More precisely, what the method
* will do (in the given order):
+ * </p>
* <ol>
* <li>Obtain a read (shared) lock on the locked (hidden) object. The
current thread may block, until such a
* lock is granted.</li>
@@ -147,8 +149,10 @@ public class LockingVisitors {
}
/**
+ * <p>
* Provides write (exclusive) access to the locked (hidden) object.
More precisely, what the method will do (in
* the given order):
+ * </p>
* <ol>
* <li>Obtain a write (shared) lock on the locked (hidden) object. The
current thread may block, until such a
* lock is granted.</li>
@@ -167,8 +171,10 @@ public class LockingVisitors {
}
/**
+ * <p>
* Provides read (shared, non-exclusive) access to the locked (hidden)
object for the purpose of computing a
* result object. More precisely, what the method will do (in the
given order):
+ * </p>
* <ol>
* <li>Obtain a read (shared) lock on the locked (hidden) object. The
current thread may block, until such a
* lock is granted.</li>
@@ -178,10 +184,10 @@ public class LockingVisitors {
* lock will be released anyways.</li>
* <li>Return the result object, that has been received from the
functions invocation.</li>
* </ol>
- *
- * <em>Example:</em> Suggest, that the hidden object is a list, and we
wish to know the current size of the
+ * <p>
+ * <em>Example:</em> Consider that the hidden object is a list, and we
wish to know the current size of the
* list. This might be achieved with the following:
- *
+ * </p>
* <pre>
* private Lock<List<Object>> listLock;
*
@@ -205,8 +211,10 @@ public class LockingVisitors {
}
/**
+ * <p>
* Provides write (exclusive) access to the locked (hidden) object for
the purpose of computing a result object.
* More precisely, what the method will do (in the given order):
+ * </p>
* <ol>
* <li>Obtain a read (shared) lock on the locked (hidden) object. The
current thread may block, until such a
* lock is granted.</li>
@@ -325,7 +333,7 @@ public class LockingVisitors {
/**
* This class implements a wrapper for a locked (hidden) object, and
provides the means to access it. The basic
- * idea, is that the user code forsakes all references to the locked
object, using only the wrapper object, and the
+ * idea is that the user code forsakes all references to the locked
object, using only the wrapper object, and the
* accessor methods {@link #acceptReadLocked(FailableConsumer)}, {@link
#acceptWriteLocked(FailableConsumer)},
* {@link #applyReadLocked(FailableFunction)}, and {@link
#applyWriteLocked(FailableFunction)}. By doing so, the
* necessary protections are guaranteed.