]> source.dussan.org Git - vaadin-framework.git/commitdiff
Remove check for header not sent since svn revision [11874] (#9168)
authorLeif Åstrand <leif@vaadin.com>
Wed, 25 Jul 2012 11:26:45 +0000 (14:26 +0300)
committerLeif Åstrand <leif@vaadin.com>
Thu, 26 Jul 2012 13:29:12 +0000 (16:29 +0300)
src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java

index 27768ed8b5e2c8336c2b1f78577305839b6847ca..3c8fc596d1f455018d2427b09dfe1b9b714b9ce8 100644 (file)
@@ -1286,8 +1286,6 @@ public abstract class AbstractApplicationServlet extends HttpServlet implements
             return RequestType.STATIC_FILE;
         } else if (isApplicationRequest(request)) {
             return RequestType.APPLICATION_RESOURCE;
-        } else if (request.getHeader("FileId") != null) {
-            return RequestType.FILE_UPLOAD;
         }
         return RequestType.OTHER;