From: Leif Åstrand Date: Fri, 5 Apr 2013 13:33:24 +0000 (+0300) Subject: Fix Profiler call that was accidentally left out when merging #3400 X-Git-Tag: 7.1.0.beta1~155 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=afd707b6a019a7a6bc4ab91657bd07411642bfa4;p=vaadin-framework.git Fix Profiler call that was accidentally left out when merging #3400 Change-Id: I5ef3476df3cc0bd41c813fab2cdfa0dc9295d2cb --- diff --git a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java index e7f7379994..dcb159985c 100644 --- a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java +++ b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java @@ -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("%")) {