Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas FAUVERGUE2015-09-01 12:05:15 +0000
committerGerrit Code Review @ Eclipse.org2015-09-03 07:23:03 +0000
commit6958778adb2b071d5c6c65ea203e7c692d57ed66 (patch)
treecfa8d0c64a7c6854b535f57918a558c91927a930
parentc21b797172564acd9e41e23cfdfdf08c6b20a5af (diff)
downloadorg.eclipse.papyrus-6958778adb2b071d5c6c65ea203e7c692d57ed66.tar.gz
org.eclipse.papyrus-6958778adb2b071d5c6c65ea203e7c692d57ed66.tar.xz
org.eclipse.papyrus-6958778adb2b071d5c6c65ea203e7c692d57ed66.zip
Bug 476242: [Nattable Property] Table Widget created twice in property
view https://bugs.eclipse.org/bugs/show_bug.cgi?id=476242 The table was displayed two times because of the multi calls of createTableWidget. Change-Id: Ibafac4df58db3b7b7cd333b7c03034d8ee448694 Signed-off-by: Nicolas FAUVERGUE <nicolas.fauvergue@all4tec.net>
-rw-r--r--plugins/uml/properties/org.eclipse.papyrus.uml.properties/src/org/eclipse/papyrus/uml/properties/widgets/NattablePropertyEditor.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/uml/properties/org.eclipse.papyrus.uml.properties/src/org/eclipse/papyrus/uml/properties/widgets/NattablePropertyEditor.java b/plugins/uml/properties/org.eclipse.papyrus.uml.properties/src/org/eclipse/papyrus/uml/properties/widgets/NattablePropertyEditor.java
index c60e7942634..a03a0176fc3 100644
--- a/plugins/uml/properties/org.eclipse.papyrus.uml.properties/src/org/eclipse/papyrus/uml/properties/widgets/NattablePropertyEditor.java
+++ b/plugins/uml/properties/org.eclipse.papyrus.uml.properties/src/org/eclipse/papyrus/uml/properties/widgets/NattablePropertyEditor.java
@@ -197,8 +197,6 @@ public class NattablePropertyEditor extends AbstractPropertyEditor {
final EMFModelElement emfModelElement = (EMFModelElement) modelElement;
sourceElement = emfModelElement.getSource();
feature = emfModelElement.getFeature(getLocalPropertyPath());
-
- createTableWidget(sourceElement, feature, null);
} else {
displayError("Invalid table context"); //$NON-NLS-1$
return;

Back to the top