Skip to content

Commit 900b7d9

Browse files
committed
Remove unnecessary type parameter
1 parent 2b5635c commit 900b7d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/zwobble/mammoth/internal/conversion/DocumentToHtml.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ private List<HtmlNode> convertToHtml(List<DocumentElement> elements, Context con
119119
);
120120
}
121121

122-
private <T> List<HtmlNode> convertChildrenToHtml(HasChildren element, Context context) {
122+
private List<HtmlNode> convertChildrenToHtml(HasChildren element, Context context) {
123123
return convertToHtml(element.getChildren(), context);
124124
}
125125

0 commit comments

Comments
 (0)