Fix warnings

This commit is contained in:
Andreas Svanberg 2025-04-07 12:02:17 +02:00
parent b772b71061
commit dbcf0b603f

@ -21,10 +21,9 @@ public class ViewForumThreadPanel<A> extends GenericPanel<A> {
private final ForumThread<A> forumThread;
private final WebMarkupContainer wrapper;
private SubmitForumReplyPanel topReplyPanel;
private SubmitForumReplyPanel<A> topReplyPanel;
private AjaxLink<Void> topReplyLink;
@SuppressWarnings("unchecked")
public ViewForumThreadPanel(String id, final IModel<A> model, final ForumThread<A> forumThread) {
super(id, model);
this.forumThread = forumThread;