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

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


The following commit(s) were added to refs/heads/master by this push:
     new a58dc4b0ee GROOVY-11337: Bump asciidoctorj-diagram to 2.3.0 (changes 
needed for hidden stereotype)
a58dc4b0ee is described below

commit a58dc4b0ee9c5dd87cf829c75f8b10a446063614
Author: Paul King <pa...@asert.com.au>
AuthorDate: Mon Mar 11 21:14:07 2024 +1000

    GROOVY-11337: Bump asciidoctorj-diagram to 2.3.0 (changes needed for hidden 
stereotype)
---
 src/spec/doc/_design-pattern-chain-of-responsibility.adoc | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/spec/doc/_design-pattern-chain-of-responsibility.adoc 
b/src/spec/doc/_design-pattern-chain-of-responsibility.adoc
index 058c131d52..87cd677ced 100644
--- a/src/spec/doc/_design-pattern-chain-of-responsibility.adoc
+++ b/src/spec/doc/_design-pattern-chain-of-responsibility.adoc
@@ -39,18 +39,21 @@ Here is a UML representation:
 [plantuml, ChainOfResponsibilityClasses, png]
 ....
 !pragma layout smetana
-skinparam nodesep 100
-hide <<HIDDEN>>
+skinparam nodesep 200
+skinparam ObjectBorderColor<<Hidden>> Transparent
+skinparam ObjectBackgroundColor<<Hidden>> Transparent
+skinparam ObjectFontColor<<Hidden>> Transparent
+skinparam ObjectStereotypeFontColor<<Hidden>> Transparent
 class UnixLister {
     nextInLine : Object
     +listFiles(dir)
 }
-object dummy1<<HIDDEN>>
+object dummy1<<Hidden>>
 class WindowsLister {
     nextInLine : Object
     +listFiles(dir)
 }
-object dummy2<<HIDDEN>>
+object dummy2<<Hidden>>
 class DefaultLister {
     +listFiles(dir)
 }
@@ -61,6 +64,7 @@ UnixLister --> "forwardIfRequired" WindowsLister
 UnixLister <-[hidden]- dummy1
 WindowsLister <-[hidden]- dummy2
 WindowsLister --> "forwardIfRequired" DefaultLister
+hide <<Hidden>>
 ....
 
 == Example using simplifying strategies

Reply via email to