Skip to content

Commit 3cd41e8

Browse files
committed
[trivial] some test cases were failing (due to the constructor-javadoc update); the bug was in the test cases, not the code.
1 parent 1384244 commit 3cd41e8

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

test/transform/resource/after-delombok/BuilderNestedJavadoc.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ public static class NestedClass {
44
* Example javadoc
55
*/
66
String name;
7+
/**
8+
* Creates a new {@code NestedClass} instance.
9+
*
10+
* @param name Example javadoc
11+
*/
712
@java.lang.SuppressWarnings("all")
813
@lombok.Generated
914
NestedClass(final String name) {

test/transform/resource/after-ecj/BuilderNestedJavadoc.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
}
2222
}
2323
String name;
24+
/**
25+
* Creates a new {@code NestedClass} instance.
26+
*
27+
* @param name Example javadoc
28+
*/
2429
@java.lang.SuppressWarnings("all") @lombok.Generated NestedClass(final String name) {
2530
super();
2631
this.name = name;

0 commit comments

Comments
 (0)