aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorAMahdy AbdElAziz <amahdy7@gmail.com>2014-12-19 10:49:29 +0200
committerSauli Tähkäpää <sauli@vaadin.com>2015-01-05 12:17:04 +0200
commit39a056aaa9be7aa18d488a49c6a0d292e7806378 (patch)
tree00e599fdcecdcf0d1fdaffe89c102205b91642aa /client
parent69025a56d686fa14d991b8e2e950061fa9da7c25 (diff)
downloadvaadin-framework-39a056aaa9be7aa18d488a49c6a0d292e7806378.tar.gz
vaadin-framework-39a056aaa9be7aa18d488a49c6a0d292e7806378.zip
Typo in the Profiler log (#15426)
Horizontally is done in the block before this one. Vertically is done here. Change-Id: I230297edb26ee41106d50756ae5221fd108fba21
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/LayoutManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/LayoutManager.java b/client/src/com/vaadin/client/LayoutManager.java
index bf79009f4c..2f39eaedd4 100644
--- a/client/src/com/vaadin/client/LayoutManager.java
+++ b/client/src/com/vaadin/client/LayoutManager.java
@@ -443,7 +443,7 @@ public class LayoutManager {
try {
String key = null;
if (Profiler.isEnabled()) {
- key = "layoutHorizontally() for "
+ key = "layoutVertically() for "
+ Util.getSimpleName(cl);
Profiler.enter(key);
}