summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVeronika Irvine <veronika>2006-02-09 19:58:21 +0000
committerVeronika Irvine <veronika>2006-02-09 19:58:21 +0000
commitd61f1c6afcf32ea184f14d914b6a7730549347ac (patch)
treeeaf488d441896e88354723c259fedcc81f0fe7c8
parent89fb6efe8c4cb5d7e5058de63f9345470fab6f69 (diff)
downloadeclipse.platform.swt-d61f1c6afcf32ea184f14d914b6a7730549347ac.tar.gz
eclipse.platform.swt-d61f1c6afcf32ea184f14d914b6a7730549347ac.tar.xz
eclipse.platform.swt-d61f1c6afcf32ea184f14d914b6a7730549347ac.zip
removing unneccessary assignment - assignment done in createItem()
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java
index b6eb899d92..8c3330e046 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java
@@ -2757,7 +2757,7 @@ public void setItemCount (int count) {
itemCount = count;
} else {
for (int i=itemCount; i<count; i++) {
- items [i] = new TableItem (this, SWT.NONE, i, true);
+ new TableItem (this, SWT.NONE, i, true);
}
}
if (!isVirtual) setRedraw (true);