diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-06-09 11:47:47 +0300 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2015-06-09 11:57:35 +0300 |
commit | 2cb9266278c229c9a745ef09ded9d7ed4ad96dce (patch) | |
tree | 587c28dd0240b30c9ff8362f6ec744c867a27069 /server/src/com | |
parent | 7892592d037f7070bbe89d939756f7f82cb505a4 (diff) | |
download | vaadin-framework-7.4.8.tar.gz vaadin-framework-7.4.8.zip |
Change-Id: I7a90d75d0fdc54abc819dbacf7f8f572c85b3913
Diffstat (limited to 'server/src/com')
-rw-r--r-- | server/src/com/vaadin/server/DownloadStream.java | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/server/src/com/vaadin/server/DownloadStream.java b/server/src/com/vaadin/server/DownloadStream.java index 0dfd9e42c3..65ef560974 100644 --- a/server/src/com/vaadin/server/DownloadStream.java +++ b/server/src/com/vaadin/server/DownloadStream.java @@ -25,7 +25,6 @@ import java.net.URLEncoder; import java.util.HashMap; import java.util.Iterator; import java.util.Map; -import java.util.logging.Logger; import javax.servlet.http.HttpServletResponse; @@ -323,7 +322,7 @@ public class DownloadStream implements Serializable { * Returns the filename formatted for inclusion in a Content-Disposition * header. Includes both a plain version of the name and a UTF-8 version * - * @since + * @since 7.4.8 * @param filename * The filename to include * @return A value for inclusion in a Content-Disposition header @@ -336,11 +335,6 @@ public class DownloadStream implements Serializable { } catch (UnsupportedEncodingException e) { return null; } - - } - - public static Logger getLogger() { - return Logger.getLogger(DownloadStream.class.getName()); } /** |