Skip to content

Commit

Permalink
Commenting out automatic output type generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Craigacp authored and karllessard committed Jul 19, 2024
1 parent 0906349 commit 79e942b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,10 @@ void buildClass() {
if (seenGenerics.add(typeVar.name)) {
typeParams.add(typeVar);
builder.addTypeVariable(typeVar);
builder.addJavadoc(
"\n@param <$L> data type for {@code $L} output\n", typeVar.name, output.getName());
// FIXME: check if we need to add this or if it's redundant now with other type
// generations.
// builder.addJavadoc("\n@param <$L> data type for {@code $L} output\n", typeVar.name,
// output.getName());
}
}
}
Expand Down

0 comments on commit 79e942b

Please sign in to comment.