summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorAhmed Ashour <asashour@yahoo.com>2017-09-21 12:35:06 +0200
committerHenri Sara <henri.sara@gmail.com>2017-09-21 13:35:06 +0300
commite118f4d860adeaca1690ef095906ae6be84f3cb5 (patch)
tree142f8464009b5aeecdea59827ea5980a76932ad4 /client
parenta166d6f52bf99d7616959f8e16b3972ed6b074d0 (diff)
downloadvaadin-framework-e118f4d860adeaca1690ef095906ae6be84f3cb5.tar.gz
vaadin-framework-e118f4d860adeaca1690ef095906ae6be84f3cb5.zip
Access static members in a static way (#10054)
Diffstat (limited to 'client')
-rw-r--r--client/src/main/java/com/vaadin/client/metadata/Type.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/main/java/com/vaadin/client/metadata/Type.java b/client/src/main/java/com/vaadin/client/metadata/Type.java
index d598bf0271..587731aac6 100644
--- a/client/src/main/java/com/vaadin/client/metadata/Type.java
+++ b/client/src/main/java/com/vaadin/client/metadata/Type.java
@@ -133,7 +133,7 @@ public class Type {
public Object createProxy(InvokationHandler invokationHandler)
throws NoDataException {
- return TypeDataStore.get().getProxyHandler(this)
+ return TypeDataStore.getProxyHandler(this)
.createProxy(invokationHandler);
}