diff --git a/core.windows/src/org/netbeans/core/windows/view/ui/MainWindow.java b/core.windows/src/org/netbeans/core/windows/view/ui/MainWindow.java --- a/core.windows/src/org/netbeans/core/windows/view/ui/MainWindow.java +++ b/core.windows/src/org/netbeans/core/windows/view/ui/MainWindow.java @@ -465,20 +465,6 @@ } } - /** - * don't allow smaller bounds than the one constructed from preffered sizes, making sure everything is visible when - * in SDI. #40063 - */ - @Override - public void setBounds(Rectangle rect) { - Rectangle bounds = rect; - if (bounds != null) { - if (bounds.height < getPreferredSize().height) { - bounds = new Rectangle(bounds.x, bounds.y, bounds.width, getPreferredSize().height); - } - } - super.setBounds(bounds); - } /** Prepares main window, has to be called after {@link initializeComponents()}. */ public void prepareWindow() { diff --git a/nbbuild/cluster.properties b/nbbuild/cluster.properties --- a/nbbuild/cluster.properties +++ b/nbbuild/cluster.properties @@ -565,7 +565,6 @@ maven.gsf,\ maven.j2ee,\ maven.jaxws,\ - maven.samples,\ projectimport.eclipse.web,\ servletjspapi,\ spring.webmvc,\