summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAMahdy AbdElAziz <amahdy7@gmail.com>2014-12-19 10:49:29 +0200
committerAMahdy AbdElAziz <amahdy7@gmail.com>2014-12-23 15:15:04 +0000
commitdaeb97f2e7ebd83a815ee46d677692de9b25075e (patch)
tree542845749267648e350c1803ed8beee3309e4390
parent42a4c72741fb4a45d491839b207a8662ff93fdb4 (diff)
downloadvaadin-framework-daeb97f2e7ebd83a815ee46d677692de9b25075e.tar.gz
vaadin-framework-daeb97f2e7ebd83a815ee46d677692de9b25075e.zip
Typo in the Profiler log (#15426)
Horizontally is done in the block before this one. Vertically is done here. Change-Id: I230297edb26ee41106d50756ae5221fd108fba21
-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);
}