aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2013-02-21 14:15:24 +0200
committerVaadin Code Review <review@vaadin.com>2013-02-25 09:50:08 +0000
commitdf430d5d16f18cfd771f01863193f547e0d0f2e7 (patch)
tree2869f5ca2779e2fbe408851ba3727edc9beb0413
parent7af5b3fceb75b6f505a9a6d0a843b788bb06d9a7 (diff)
downloadvaadin-framework-df430d5d16f18cfd771f01863193f547e0d0f2e7.tar.gz
vaadin-framework-df430d5d16f18cfd771f01863193f547e0d0f2e7.zip
Remove ApplicationConnection.componentCaptionSizeChanges (#11101)
Change-Id: I636797fca00331ee81c081688f90130f8bd11aef
-rw-r--r--client/src/com/vaadin/client/ApplicationConnection.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/client/src/com/vaadin/client/ApplicationConnection.java b/client/src/com/vaadin/client/ApplicationConnection.java
index de034a65a6..729a68df3c 100644
--- a/client/src/com/vaadin/client/ApplicationConnection.java
+++ b/client/src/com/vaadin/client/ApplicationConnection.java
@@ -217,8 +217,6 @@ public class ApplicationConnection {
/** redirectTimer scheduling interval in seconds */
private int sessionExpirationInterval;
- private ArrayList<Widget> componentCaptionSizeChanges = new ArrayList<Widget>();
-
private Date requestStartTime;
private boolean validatingLayouts = false;
@@ -1424,8 +1422,6 @@ public class ApplicationConnection {
redirectTimer.schedule(1000 * sessionExpirationInterval);
}
- componentCaptionSizeChanges.clear();
-
double processUidlStart = Duration.currentTimeMillis();
// Ensure that all connectors that we are about to update exist
@@ -3089,9 +3085,11 @@ public class ApplicationConnection {
*
* @param component
* the Paintable whose caption has changed
+ * @deprecated As of 7.0.2, has not had any effect for a long time
*/
+ @Deprecated
public void captionSizeUpdated(Widget widget) {
- componentCaptionSizeChanges.add(widget);
+ // This doesn't do anything, it's just kept here for compatibility
}
/**