diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-07 16:26:25 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-11-07 16:26:25 +0200 |
commit | 88f28be83de249187df6209b6773d22b79bd8cbf (patch) | |
tree | 33f34c74d8779b1c4687bcc475163b253ebc452d /server | |
parent | fc3c0219224ff944441ccf4a4cc2dd30e783fc4e (diff) | |
download | vaadin-framework-88f28be83de249187df6209b6773d22b79bd8cbf.tar.gz vaadin-framework-88f28be83de249187df6209b6773d22b79bd8cbf.zip |
Added missing cast (#9342)
Change-Id: If8078ffea6fd2bcaf62591ed8930905cdc1d3a1d
Diffstat (limited to 'server')
-rw-r--r-- | server/src/com/vaadin/ui/Component.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/ui/Component.java b/server/src/com/vaadin/ui/Component.java index 187d5b8590..4797bb702c 100644 --- a/server/src/com/vaadin/ui/Component.java +++ b/server/src/com/vaadin/ui/Component.java @@ -753,7 +753,7 @@ public interface Component extends ClientConnector, Sizeable, Serializable { * @return the source component of the event */ public Component getComponent() { - return getSource(); + return (Component) getSource(); } } |