diff options
author | Henrik Paul <henrik@vaadin.com> | 2013-08-20 07:13:32 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-08-20 13:33:06 +0000 |
commit | c87772be9a87fe629c5c3d0077e6455261bb4762 (patch) | |
tree | 764050a94a1e1a734629259a760a26343437c8e1 /server/src | |
parent | 7220ca8758e44ae84ae5c9ef0623dc9585f6d171 (diff) | |
download | vaadin-framework-c87772be9a87fe629c5c3d0077e6455261bb4762.tar.gz vaadin-framework-c87772be9a87fe629c5c3d0077e6455261bb4762.zip |
Escape markup in CustomLayout's JavaDoc (#12410)
svn changeset:26111/svn branch:6.8
Change-Id: I8585c9022b78381a40d9008b0d489aecd741b011
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/com/vaadin/ui/CustomLayout.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/ui/CustomLayout.java b/server/src/com/vaadin/ui/CustomLayout.java index 7bffa05058..37c9a4fa21 100644 --- a/server/src/com/vaadin/ui/CustomLayout.java +++ b/server/src/com/vaadin/ui/CustomLayout.java @@ -80,7 +80,7 @@ public class CustomLayout extends AbstractLayout implements LegacyComponent { * @param templateStream * Stream containing template data. Must be using UTF-8 encoding. * To use a String as a template use for instance new - * ByteArrayInputStream("<template>".getBytes()). + * ByteArrayInputStream("<template>".getBytes()). * @param streamLength * Length of the templateStream * @throws IOException @@ -92,7 +92,7 @@ public class CustomLayout extends AbstractLayout implements LegacyComponent { /** * Constructor for custom layout with given template name. Template file is - * fetched from "<theme>/layout/<templateName>". + * fetched from "<theme>/layout/<templateName>". */ public CustomLayout(String template) { this(); |