From 67b15e71c911720aeb7ff32f65b13b6d7f3ed6bf Mon Sep 17 00:00:00 2001 From: Henri Sara Date: Tue, 26 May 2009 06:50:55 +0000 Subject: [PATCH] #2643 suppress deprecated GWT API warnings in demos svn changeset:8005/svn branch:6.0 --- .../vaadin/demo/colorpicker/gwt/client/ui/GwtColorPicker.java | 1 + src/com/vaadin/demo/sampler/gwt/client/ui/VActiveLink.java | 1 + 2 files changed, 2 insertions(+) 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; -- 2.39.5