summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-06-21 14:33:34 +0300
committerLeif Åstrand <leif@vaadin.com>2012-06-21 14:52:16 +0300
commit73fc286c1d6630f4d488fdc64e1c346afde13bef (patch)
treeb7aeab7545fac27b697b7d4e94be36059e351ec7 /src
parent0a35fe732f1c96027e859e2f15fa1909a26b5ae0 (diff)
downloadvaadin-framework-73fc286c1d6630f4d488fdc64e1c346afde13bef.tar.gz
vaadin-framework-73fc286c1d6630f4d488fdc64e1c346afde13bef.zip
Use "this" to avoid conflicts if there's a parameter named "connector"
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/terminal/gwt/widgetsetutils/RpcProxyGenerator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/terminal/gwt/widgetsetutils/RpcProxyGenerator.java b/src/com/vaadin/terminal/gwt/widgetsetutils/RpcProxyGenerator.java
index ad4e513049..d9bc8bc832 100644
--- a/src/com/vaadin/terminal/gwt/widgetsetutils/RpcProxyGenerator.java
+++ b/src/com/vaadin/terminal/gwt/widgetsetutils/RpcProxyGenerator.java
@@ -117,7 +117,7 @@ public class RpcProxyGenerator extends Generator {
writer.println(" {");
writer.indent();
- writer.print("connector.getConnection().addMethodInvocationToQueue(new MethodInvocation(connector.getConnectorId(), \""
+ writer.print("this.connector.getConnection().addMethodInvocationToQueue(new MethodInvocation(this.connector.getConnectorId(), \""
+ requestedType.getQualifiedBinaryName() + "\", \"");
writer.print(m.getName());
writer.print("\", new Object[] {");