Removed unused statement.

This commit is contained in:
Tom Vahlman 2012-03-24 15:19:27 +01:00
parent 397e90d7bc
commit 0604f4084b

@ -1,22 +1,19 @@
package se.su.dsv.scipro.supervisor.pages;
import org.apache.wicket.Component;
import org.apache.wicket.PageParameters;
import org.apache.wicket.markup.html.panel.FeedbackPanel;
import se.su.dsv.scipro.SciProSession;
import se.su.dsv.scipro.supervisor.panels.SupervisorMatchedThesisPanel;
import se.su.dsv.scipro.supervisor.panels.SupervisorUnmatchedThesisPanel;
public class SupervisorUnmatchedProjectIdeaPage extends AbstractSupervisorPage {
public static final String MAIN_MENU_LABEL = "Supervisor";
private static final long serialVersionUID = 141782543835745748L;
public SupervisorUnmatchedProjectIdeaPage(PageParameters pp) {
super(pp);
Component feedBackPanel = new FeedbackPanel("feedBackPanel");
feedBackPanel.setOutputMarkupId(true);
add(feedBackPanel);
add(new SupervisorUnmatchedThesisPanel("unmatchedThesisPanel", feedBackPanel));
}
}
package se.su.dsv.scipro.supervisor.pages;
import org.apache.wicket.Component;
import org.apache.wicket.PageParameters;
import org.apache.wicket.markup.html.panel.FeedbackPanel;
import se.su.dsv.scipro.supervisor.panels.SupervisorUnmatchedThesisPanel;
public class SupervisorUnmatchedProjectIdeaPage extends AbstractSupervisorPage {
private static final long serialVersionUID = 141782543835745748L;
public SupervisorUnmatchedProjectIdeaPage(PageParameters pp) {
super(pp);
Component feedBackPanel = new FeedbackPanel("feedBackPanel");
feedBackPanel.setOutputMarkupId(true);
add(feedBackPanel);
add(new SupervisorUnmatchedThesisPanel("unmatchedThesisPanel", feedBackPanel));
}
}