Skip to content

Commit

Permalink
[trivial] some test cases were failing (due to the constructor-javado…
Browse files Browse the repository at this point in the history
…c update); the bug was in the test cases, not the code.
  • Loading branch information
rzwitserloot committed Jun 28, 2024
1 parent 1384244 commit 3cd41e8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ public static class NestedClass {
* Example javadoc
*/
String name;
/**
* Creates a new {@code NestedClass} instance.
*
* @param name Example javadoc
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
NestedClass(final String name) {
Expand Down
5 changes: 5 additions & 0 deletions test/transform/resource/after-ecj/BuilderNestedJavadoc.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
}
}
String name;
/**
* Creates a new {@code NestedClass} instance.
*
* @param name Example javadoc
*/
@java.lang.SuppressWarnings("all") @lombok.Generated NestedClass(final String name) {
super();
this.name = name;
Expand Down

0 comments on commit 3cd41e8

Please sign in to comment.