From 63579501ae4b92db1564dc051706feb34d101eba Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 16 Feb 2016 13:55:59 +0100 Subject: Missing parenthesis Change-Id: I27aef5d1a0920bb6b9fa9c2204a422b7372fd0cb --- wizards/com/sun/star/wizards/table/ScenarioSelector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wizards') diff --git a/wizards/com/sun/star/wizards/table/ScenarioSelector.java b/wizards/com/sun/star/wizards/table/ScenarioSelector.java index 61b4b748e654..7f8882995477 100644 --- a/wizards/com/sun/star/wizards/table/ScenarioSelector.java +++ b/wizards/com/sun/star/wizards/table/ScenarioSelector.java @@ -235,7 +235,7 @@ public class ScenarioSelector extends FieldSelection implements XItemListener, X { FieldDescription curfielddescription = CurTableWizardUnoDialog.fielditems.get(fieldnames[i]); PropertyValue[] aProperties = curfielddescription.getPropertyValues(); - if (aProperties != null { + if (aProperties != null) { this.curtabledescriptor.addColumn(aProperties); } } -- cgit