Code cleaning to prepare 2.2 release
[lgpl/argeo-commons.git] / org.argeo.eclipse.ui / src / org / argeo / eclipse / ui / utils / ViewerUtils.java
index a726bdb321dae1af2db78fc0c36ac9dd58c7c651..4a53e40313d92ec3c2f4fe0e528507f110073f8a 100644 (file)
@@ -49,7 +49,7 @@ public class ViewerUtils {
        public static TableViewerColumn createTableViewerColumn(TableViewer parent,
                        String name, int style, int width) {
                TableViewerColumn tvc = new TableViewerColumn(parent, style);
-               final TableColumn column = tvc.getColumn();
+               TableColumn column = tvc.getColumn();
                column.setText(name);
                column.setWidth(width);
                column.setResizable(true);
@@ -63,7 +63,7 @@ public class ViewerUtils {
        public static TreeViewerColumn createTreeViewerColumn(TreeViewer parent,
                        String name, int style, int width) {
                TreeViewerColumn tvc = new TreeViewerColumn(parent, style);
-               final TreeColumn column = tvc.getColumn();
+               TreeColumn column = tvc.getColumn();
                column.setText(name);
                column.setWidth(width);
                column.setResizable(true);