Removed beta references.

Review by: jat
Suggested by: dpeterson


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@1300 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/dev/shell/logo.gif b/dev/core/src/com/google/gwt/dev/shell/logo.gif
index 8625ccc..9ea7323 100644
--- a/dev/core/src/com/google/gwt/dev/shell/logo.gif
+++ b/dev/core/src/com/google/gwt/dev/shell/logo.gif
Binary files differ
diff --git a/distro-source/core/src/release_notes.html b/distro-source/core/src/release_notes.html
index a8d5a39..49608d8 100644
--- a/distro-source/core/src/release_notes.html
+++ b/distro-source/core/src/release_notes.html
@@ -563,7 +563,7 @@
       </ul>
       <h4>com.google.gwt.user.client.ui.Composite</h4>
       <ul>
-        <li>Composites must now call initWidget() in their constructors, rather than setWidget().  This is more indicative of its actual purpose, and also serves to clear up any confusion with SimplePanel's setWidget() method.  Composite.setWidget() is now deprecated, and will be removed at the end of beta.</li>
+        <li>Composites must now call initWidget() in their constructors, rather than setWidget().  This is more indicative of its actual purpose, and also serves to clear up any confusion with SimplePanel's setWidget() method.  Composite.setWidget() is now deprecated.</li>
       </ul>
       <h4>com.google.gwt.user.client.ui.SimplePanel and subclasses</h4>
       <ul>
diff --git a/user/src/com/google/gwt/user/client/ui/Composite.java b/user/src/com/google/gwt/user/client/ui/Composite.java
index eaf61ab..b50949f 100644
--- a/user/src/com/google/gwt/user/client/ui/Composite.java
+++ b/user/src/com/google/gwt/user/client/ui/Composite.java
@@ -73,7 +73,7 @@
    * @param widget the widget to be wrapped
    */
   protected void initWidget(Widget widget) {
-    // Validate.  Make sure the widget is not being set twice.
+    // Validate. Make sure the widget is not being set twice.
     if (this.widget != null) {
       throw new IllegalStateException("Composite.initWidget() may only be "
           + "called once.");
@@ -88,7 +88,7 @@
 
     // Logical attach.
     this.widget = widget;
-    
+
     // Adopt.
     widget.setParent(this);
   }
@@ -110,11 +110,11 @@
   }
 
   /**
-   * This method was for initializing the Widget to be wrapped by this Composite,
-   * but has been deprecated in favor of {@link #initWidget(Widget)}.
+   * This method was for initializing the Widget to be wrapped by this
+   * Composite, but has been deprecated in favor of {@link #initWidget(Widget)}.
    * 
-   * @deprecated this method is deprecated, and will be removed when GWT leaves
-   *             beta (use {@link #initWidget(Widget)} instead)
+   * @deprecated this method is deprecated, and will be removed (use
+   *             {@link #initWidget(Widget)} instead)
    */
   protected void setWidget(Widget widget) {
     initWidget(widget);