aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/terminal/gwt/server/ServerRpcManager.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/terminal/gwt/server/ServerRpcManager.java')
-rw-r--r--src/com/vaadin/terminal/gwt/server/ServerRpcManager.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/terminal/gwt/server/ServerRpcManager.java b/src/com/vaadin/terminal/gwt/server/ServerRpcManager.java
index 025af7d61d..07f83864c2 100644
--- a/src/com/vaadin/terminal/gwt/server/ServerRpcManager.java
+++ b/src/com/vaadin/terminal/gwt/server/ServerRpcManager.java
@@ -68,7 +68,7 @@ public class ServerRpcManager<T> implements RpcManager {
* method invocation to perform
*/
public static void applyInvocation(RpcTarget target,
- ServerRPCMethodInvocation invocation) {
+ ServerRpcMethodInvocation invocation) {
RpcManager manager = target.getRpcManager(invocation
.getInterfaceClass());
if (manager != null) {
@@ -109,7 +109,7 @@ public class ServerRpcManager<T> implements RpcManager {
* @param invocation
* method invocation to perform
*/
- public void applyInvocation(ServerRPCMethodInvocation invocation) {
+ public void applyInvocation(ServerRpcMethodInvocation invocation) {
Method method = invocation.getMethod();
Class<?>[] parameterTypes = method.getParameterTypes();
Object[] args = new Object[parameterTypes.length];