]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix Profiler call that was accidentally left out when merging #3400
authorLeif Åstrand <leif@vaadin.com>
Fri, 5 Apr 2013 13:33:24 +0000 (16:33 +0300)
committerLeif Åstrand <leif@vaadin.com>
Fri, 5 Apr 2013 13:33:51 +0000 (16:33 +0300)
Change-Id: I5ef3476df3cc0bd41c813fab2cdfa0dc9295d2cb

client/src/com/vaadin/client/ui/AbstractComponentConnector.java

index e7f73799940f4296843c1de4b88f1881777da826..dcb159985c1b9695ab7d898a4906309ca3c28a19 100644 (file)
@@ -213,6 +213,8 @@ public abstract class AbstractComponentConnector extends AbstractConnector
     }
 
     protected void updateComponentSize(String newWidth, String newHeight) {
+        Profiler.enter("AbstractComponentConnector.updateComponentSize");
+
         // Parent should be updated if either dimension changed between relative
         // and non-relative
         if (newWidth.endsWith("%") != lastKnownWidth.endsWith("%")) {