]> source.dussan.org Git - vaadin-framework.git/commitdiff
merged #6687 fix from 6.6
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 24 Mar 2011 16:12:01 +0000 (16:12 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 24 Mar 2011 16:12:01 +0000 (16:12 +0000)
svn changeset:17920/svn branch:6.5

src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java

index a50cf3290a1dfdefd71e1da02f2f05f07090fee1..a9e5f2c827d2c8cdf655ba4cafb85d0071e67f93 100644 (file)
@@ -625,7 +625,7 @@ public abstract class AbstractApplicationServlet extends HttpServlet implements
      * @throws IOException
      *             if the writing failed due to input/output error.
      */
-    protected final void criticalNotification(HttpServletRequest request,
+    protected void criticalNotification(HttpServletRequest request,
             HttpServletResponse response, String caption, String message,
             String details, String url) throws IOException {
 
@@ -692,7 +692,7 @@ public abstract class AbstractApplicationServlet extends HttpServlet implements
      *            Output to write (UTF-8 encoded)
      * @throws IOException
      */
-    private void writeResponse(HttpServletResponse response,
+    protected static final void writeResponse(HttpServletResponse response,
             String contentType, String output) throws IOException {
         response.setContentType(contentType);
         final ServletOutputStream out = response.getOutputStream();