Fixed getStyleElement() to remove 'final' modifier (this was simply a mistake).
Patch by: jgw
Review by: bobv (desk check)


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2443 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/user/client/ui/UIObject.java b/user/src/com/google/gwt/user/client/ui/UIObject.java
index 0b8eca9..9759631 100644
--- a/user/src/com/google/gwt/user/client/ui/UIObject.java
+++ b/user/src/com/google/gwt/user/client/ui/UIObject.java
@@ -715,7 +715,7 @@
    * 
    * @return the element to which style names will be applied
    */
-  protected final com.google.gwt.user.client.Element getStyleElement() {
+  protected com.google.gwt.user.client.Element getStyleElement() {
     return getElement();
   }