summaryrefslogtreecommitdiffstats
path: root/server/src
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2015-06-09 11:47:47 +0300
committerVaadin Code Review <review@vaadin.com>2015-06-09 08:56:50 +0000
commit1eba7f023bf534c8dd5d508ef5f9a5970af67885 (patch)
tree2787256945988208fb6246be48b34402cdae84a1 /server/src
parenta1c8305412cfc52a67c9ab80703ddb064104a858 (diff)
downloadvaadin-framework-1eba7f023bf534c8dd5d508ef5f9a5970af67885.tar.gz
vaadin-framework-1eba7f023bf534c8dd5d508ef5f9a5970af67885.zip
Add missing since, remove unused method
Change-Id: I7a90d75d0fdc54abc819dbacf7f8f572c85b3913
Diffstat (limited to 'server/src')
-rw-r--r--server/src/com/vaadin/server/DownloadStream.java8
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());
}
/**