From 65981705b433d9ed02c667a2d838ced2b6314573 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 20 Nov 2012 12:04:11 +0200 Subject: Renamed ComponentState to AbstractComponentState (#9032) Change-Id: Ida6e0cb7064580be36627fd735d79b82ee69356d --- server/src/com/vaadin/ui/AbstractComponent.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'server') diff --git a/server/src/com/vaadin/ui/AbstractComponent.java b/server/src/com/vaadin/ui/AbstractComponent.java index 57032f58a8..fc6f176e2a 100644 --- a/server/src/com/vaadin/ui/AbstractComponent.java +++ b/server/src/com/vaadin/ui/AbstractComponent.java @@ -35,7 +35,7 @@ import com.vaadin.server.Resource; import com.vaadin.server.Terminal; import com.vaadin.server.VaadinSession; import com.vaadin.shared.ComponentConstants; -import com.vaadin.shared.ComponentState; +import com.vaadin.shared.AbstractComponentState; import com.vaadin.shared.ui.ComponentStateUtil; import com.vaadin.util.ReflectTools; @@ -617,8 +617,8 @@ public abstract class AbstractComponent extends AbstractClientConnector * @return updated component shared state */ @Override - protected ComponentState getState() { - return (ComponentState) super.getState(); + protected AbstractComponentState getState() { + return (AbstractComponentState) super.getState(); } @Override -- cgit v1.2.3