diff options
author | Johannes Dahlström <johannes.dahlstrom@vaadin.com> | 2012-07-20 15:02:36 +0000 |
---|---|---|
committer | Johannes Dahlström <johannes.dahlstrom@vaadin.com> | 2012-07-20 15:02:36 +0000 |
commit | b6ea64e917b69a80bd61c0541947fee8faf0e46c (patch) | |
tree | 2b8767754826acfaa204f831e81445a8d299a0fa /src | |
parent | 482a7362d423a778e71b5e7fc1a7ac346d40c802 (diff) | |
download | vaadin-framework-b6ea64e917b69a80bd61c0541947fee8faf0e46c.tar.gz vaadin-framework-b6ea64e917b69a80bd61c0541947fee8faf0e46c.zip |
Fix a typo
svn changeset:24019/svn branch:6.8
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/VUIDLBrowser.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/VUIDLBrowser.java b/src/com/vaadin/terminal/gwt/client/VUIDLBrowser.java index 95d2fd0b5f..90912b4449 100644 --- a/src/com/vaadin/terminal/gwt/client/VUIDLBrowser.java +++ b/src/com/vaadin/terminal/gwt/client/VUIDLBrowser.java @@ -29,7 +29,7 @@ import com.vaadin.terminal.gwt.client.ui.VView; import com.vaadin.terminal.gwt.client.ui.VWindow; public class VUIDLBrowser extends SimpleTree { - private static final String HELP = "Shift click handle to open recursively. Click components to hightlight them on client side. Shift click components to highlight them also on the server side."; + private static final String HELP = "Shift click handle to open recursively. Click components to highlight them on client side. Shift click components to highlight them also on the server side."; private ApplicationConfiguration conf; private String highlightedPid; @@ -201,7 +201,7 @@ public class VUIDLBrowser extends SimpleTree { tmp.addItem(name + "=" + value); } if (tmp != null) { - add(tmp); + add(tmp); } } catch (final Exception e) { // Ignored, no variables |