Removed the Frame example from Showcase as it generates warnings that might be confusing to new users. At some point, we can add an html page within the same domain and readd the example. This patch is TBR.
Patch by: jlabanca
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2409 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/samples/showcase/src/com/google/gwt/sample/showcase/client/Showcase.java b/samples/showcase/src/com/google/gwt/sample/showcase/client/Showcase.java
index f35b8c2..e7c750f 100644
--- a/samples/showcase/src/com/google/gwt/sample/showcase/client/Showcase.java
+++ b/samples/showcase/src/com/google/gwt/sample/showcase/client/Showcase.java
@@ -32,7 +32,6 @@
import com.google.gwt.sample.showcase.client.content.lists.CwTree;
import com.google.gwt.sample.showcase.client.content.other.CwAnimation;
import com.google.gwt.sample.showcase.client.content.other.CwCookies;
-import com.google.gwt.sample.showcase.client.content.other.CwFrame;
import com.google.gwt.sample.showcase.client.content.panels.CwAbsolutePanel;
import com.google.gwt.sample.showcase.client.content.panels.CwDecoratorPanel;
import com.google.gwt.sample.showcase.client.content.panels.CwDisclosurePanel;
@@ -403,7 +402,6 @@
// Other
TreeItem catOther = mainMenu.addItem(constants.categoryOther());
setupMainMenuOption(catOther, new CwAnimation(constants), images.catOther());
- setupMainMenuOption(catOther, new CwFrame(constants), images.catOther());
setupMainMenuOption(catOther, new CwCookies(constants), images.catOther());
}