diff options
author | Artur Signell <artur@vaadin.com> | 2013-03-04 16:42:23 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-03-06 09:23:57 +0000 |
commit | 5cc81cf36cb832d021181bba8c194e52c1961d6d (patch) | |
tree | 875f128dd90a40fb97e7060fdae51116ca3027db | |
parent | 79b4ed10cbfdd65c94cced64ba78da21350a22ba (diff) | |
download | vaadin-framework-5cc81cf36cb832d021181bba8c194e52c1961d6d.tar.gz vaadin-framework-5cc81cf36cb832d021181bba8c194e52c1961d6d.zip |
Improved javadoc (#10632)
Change-Id: Iec54c7425e5ee00d9dbc7dff5cf5ae8dbf28d214
-rw-r--r-- | server/src/com/vaadin/server/StreamResource.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/server/src/com/vaadin/server/StreamResource.java b/server/src/com/vaadin/server/StreamResource.java index adc2e23a3c..7210bcaffb 100644 --- a/server/src/com/vaadin/server/StreamResource.java +++ b/server/src/com/vaadin/server/StreamResource.java @@ -23,9 +23,7 @@ import com.vaadin.util.FileTypeResolver; /** * <code>StreamResource</code> is a resource provided to the client directly by - * the application. The strean resource is fetched from URI that is most often - * in the context of the application or window. The resource is automatically - * registered to window in creation. + * the application. * * @author Vaadin Ltd. * @since 3.0 @@ -65,8 +63,6 @@ public class StreamResource implements ConnectorResource { * the source Stream. * @param filename * the name of the file. - * @param application - * the Application object. */ public StreamResource(StreamSource streamSource, String filename) { setFilename(filename); |