Add missing generic type to Javadoc Builder (#3499)

This commit is contained in:
hduelme 2024-01-28 18:07:57 +01:00 committed by GitHub
parent 90a3ce0b46
commit 0a43bc088f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,7 +31,7 @@ public class Javadoc extends ModelElement {
return this;
}
public Builder authors(List authors) {
public Builder authors(List<String> authors) {
this.authors = authors;
return this;
}