File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed
archunit/src/main/java/com/tngtech/archunit/library/adr/envelopes Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -130,4 +130,10 @@ public Optional<String> moreInformation() {
130130 public Adr withMoreInformation (final String moreInformation ) {
131131 return this .delegate .withMoreInformation (moreInformation );
132132 }
133+
134+ @ PublicAPI (usage = ACCESS )
135+ @ Override
136+ public String toString () {
137+ return this .delegate .toString ();
138+ }
133139}
Original file line number Diff line number Diff line change @@ -92,4 +92,10 @@ public Optional<List<String>> informed() {
9292 public Metadata withInformed (final List <String > informed ) {
9393 return this .delegate .withInformed (informed );
9494 }
95+
96+ @ PublicAPI (usage = ACCESS )
97+ @ Override
98+ public String toString () {
99+ return this .delegate .toString ();
100+ }
95101}
Original file line number Diff line number Diff line change @@ -68,4 +68,10 @@ public OptionProsAndCons withExample(final String example) {
6868 public List <String > prosAndCons () {
6969 return this .delegate .prosAndCons ();
7070 }
71+
72+ @ PublicAPI (usage = ACCESS )
73+ @ Override
74+ public String toString () {
75+ return this .delegate .toString ();
76+ }
7177}
You can’t perform that action at this time.
0 commit comments