From 8e17afda2ec060f56da0626fb40b088670777e8c Mon Sep 17 00:00:00 2001 From: Leif Åstrand Date: Tue, 13 Jan 2015 21:55:26 +0200 Subject: Rename BackgroundMessage -> NoLoadingIndicator (#15373) Change-Id: Icc25e5727880baa9dceba3394522b3c5b3a4314f --- .../com/vaadin/server/widgetsetutils/metadata/ServerRpcVisitor.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client-compiler/src') diff --git a/client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ServerRpcVisitor.java b/client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ServerRpcVisitor.java index 7efdf9db81..86ece28041 100644 --- a/client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ServerRpcVisitor.java +++ b/client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ServerRpcVisitor.java @@ -24,7 +24,7 @@ import com.google.gwt.core.ext.typeinfo.JClassType; import com.google.gwt.core.ext.typeinfo.JMethod; import com.google.gwt.core.ext.typeinfo.JType; import com.vaadin.client.metadata.TypeDataStore.MethodAttribute; -import com.vaadin.shared.annotations.BackgroundMessage; +import com.vaadin.shared.annotations.NoLoadingIndicator; import com.vaadin.shared.annotations.Delayed; public class ServerRpcVisitor extends TypeVisitor { @@ -52,9 +52,9 @@ public class ServerRpcVisitor extends TypeVisitor { } } - if (method.getAnnotation(BackgroundMessage.class) != null) { + if (method.getAnnotation(NoLoadingIndicator.class) != null) { bundle.setMethodAttribute(type, method, - MethodAttribute.BACKGROUND_MESSAGE); + MethodAttribute.NO_LOADING_INDICATOR); } bundle.setNeedsParamTypes(type, method); -- cgit v1.2.3