From: Henri Sara Date: Tue, 26 May 2009 06:50:55 +0000 (+0000) Subject: #2643 suppress deprecated GWT API warnings in demos X-Git-Tag: 6.7.0.beta1~2773 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=67b15e71c911720aeb7ff32f65b13b6d7f3ed6bf;p=vaadin-framework.git #2643 suppress deprecated GWT API warnings in demos svn changeset:8005/svn branch:6.0 --- diff --git a/src/com/vaadin/demo/colorpicker/gwt/client/ui/GwtColorPicker.java b/src/com/vaadin/demo/colorpicker/gwt/client/ui/GwtColorPicker.java index fc37e6971a..83c74d4fe4 100644 --- a/src/com/vaadin/demo/colorpicker/gwt/client/ui/GwtColorPicker.java +++ b/src/com/vaadin/demo/colorpicker/gwt/client/ui/GwtColorPicker.java @@ -17,6 +17,7 @@ import com.google.gwt.user.client.ui.Widget; /** * A regular GWT component without integration with Vaadin. */ +@SuppressWarnings("deprecation") public class GwtColorPicker extends Composite implements ClickListener { /** Currently selected color name to give client-side feedback to the user. */ diff --git a/src/com/vaadin/demo/sampler/gwt/client/ui/VActiveLink.java b/src/com/vaadin/demo/sampler/gwt/client/ui/VActiveLink.java index a95db45e08..a15908ff1e 100644 --- a/src/com/vaadin/demo/sampler/gwt/client/ui/VActiveLink.java +++ b/src/com/vaadin/demo/sampler/gwt/client/ui/VActiveLink.java @@ -8,6 +8,7 @@ import com.vaadin.terminal.gwt.client.ApplicationConnection; import com.vaadin.terminal.gwt.client.UIDL; import com.vaadin.terminal.gwt.client.ui.VLink; +@SuppressWarnings("deprecation") public class VActiveLink extends VLink { String id;