This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
The following commit(s) were added to refs/heads/master by this push: new 549c6d40 Close HTML tags 549c6d40 is described below commit 549c6d4084ffb87f797c1f07676e962b4744f99b Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Jul 12 15:15:33 2023 -0400 Close HTML tags --- .../org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java b/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java index 8f23749b..917bf05d 100644 --- a/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java +++ b/auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java @@ -52,14 +52,17 @@ import java.util.Vector; * same name as the cache / region name this auxiliary is associated with. * update / remove / removeAll operations are broadcast to all members of the * group. A listener thread processes requests from other members of the group, - * and dispatches to appropriate methods on the associated CompositeCache. </p> + * and dispatches to appropriate methods on the associated CompositeCache. + * </p> * <p> * Calls to get are currently ignored. + * </p> * <p> * Messages are sent to peers asynchronously. Synchronous messaging could be * added using MessageDispatcher or RpcDispatcher. Combined with a get * implementation this could provide much higher cache consistency (but with * a substantial speed penalty). + * </p> */ public class JavaGroupsCache implements AuxiliaryCache, RequestHandler, MembershipListener