]> source.dussan.org Git - vaadin-framework.git/commitdiff
#7369 Removed ‌"final" from methods that do not need to be final
authorArtur Signell <artur.signell@itmill.com>
Fri, 19 Aug 2011 13:34:45 +0000 (13:34 +0000)
committerArtur Signell <artur.signell@itmill.com>
Fri, 19 Aug 2011 13:34:45 +0000 (13:34 +0000)
svn changeset:20524/svn branch:6.7

src/com/vaadin/ui/AbstractSelect.java
src/com/vaadin/ui/CustomComponent.java
src/com/vaadin/ui/GridLayout.java

index 59e173b536cbdbe58f8c92e7e8af59178d1339b3..646d898a54b8058a79cd9974e7d3ef15dbde3453 100644 (file)
@@ -1615,7 +1615,7 @@ public abstract class AbstractSelect extends AbstractField implements
      * @see #isSelected(Object)
      * @see #select(Object)
      */
-    public final Object getNullSelectionItemId() {
+    public Object getNullSelectionItemId() {
         return nullSelectionItemId;
     }
 
index a598b5b3bb8d879d492cbb36588a550000e6a98d..847338fa60f77f9ad85e58d4ef00cddcc2e11691 100644 (file)
@@ -76,7 +76,7 @@ public class CustomComponent extends AbstractComponentContainer {
      * 
      * @return the Component Composition root.
      */
-    protected final Component getCompositionRoot() {
+    protected Component getCompositionRoot() {
         return root;
     }
 
@@ -90,7 +90,7 @@ public class CustomComponent extends AbstractComponentContainer {
      * @param compositionRoot
      *            the root of the composition component tree.
      */
-    protected final void setCompositionRoot(Component compositionRoot) {
+    protected void setCompositionRoot(Component compositionRoot) {
         if (compositionRoot != root) {
             if (root != null) {
                 // remove old component
index 40b0ca9a6c5a9352f7c531c662f9d9c85eb9fba2..83fd5f2a01d5d0afd08b089fe028e561d5d95798 100644 (file)
@@ -979,7 +979,7 @@ public class GridLayout extends AbstractLayout implements
      * 
      * @return the number of columns in the grid.
      */
-    public final int getColumns() {
+    public int getColumns() {
         return cols;
     }
 
@@ -1023,7 +1023,7 @@ public class GridLayout extends AbstractLayout implements
      * 
      * @return the number of rows in the grid.
      */
-    public final int getRows() {
+    public int getRows() {
         return rows;
     }