From 603ba66af2f4b849ccf181c8b65189859f49217b Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Fri, 14 Aug 2009 09:02:21 +0000 Subject: [PATCH] #3191 svn changeset:8482/svn branch:6.1 --- .../server/AbstractApplicationServlet.java | 20 ++----------------- 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java b/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java index a6b035f975..9f579cf81c 100644 --- a/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java +++ b/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java @@ -1383,7 +1383,7 @@ public abstract class AbstractApplicationServlet extends HttpServlet { writeAjaxPageHtmlMainDiv(page, appId, classNames, divStyle); if (!fragment) { - writeAjaxPageHtmlBodyEnd(page); + page.write("\n\n"); } page.close(); @@ -1427,6 +1427,7 @@ public abstract class AbstractApplicationServlet extends HttpServlet { throws IOException { page.write("
\n"); + page.write(""); } /** @@ -1567,23 +1568,6 @@ public abstract class AbstractApplicationServlet extends HttpServlet { return widgetset; } - /** - * Method to write the end of the html kickstart page. - *

- * This method is responsible for closing body and html tags. - *

- * Override this method if you want to add some custom html to the end of - * the page. - * - * @param page - * @throws IOException - */ - protected void writeAjaxPageHtmlBodyEnd(final BufferedWriter page) - throws IOException { - page.write(""); - page.write("\n\n"); - } - /** * * Method to open the body tag of the html kickstart page. -- 2.39.5