Skip to content

Commit

Permalink
Fix wrong constant in drop down
Browse files Browse the repository at this point in the history
  • Loading branch information
laeubi committed Dec 3, 2023
1 parent cabf70b commit 6715b42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public void widgetSelected(SelectionEvent e) {
specVersionCombo.getControl().setFont(JFaceResources.getDialogFont());
specVersionCombo.setContentProvider(ArrayContentProvider.getInstance());
specVersionCombo.setInput(List.of(DSAnnotationVersion.V1_2, DSAnnotationVersion.V1_3, DSAnnotationVersion.V1_4,
DSAnnotationVersion.V1_4));
DSAnnotationVersion.V1_5));
specVersionCombo.setSelection(new StructuredSelection(DSAnnotationVersion.V1_5));
specVersionCombo.addSelectionChangedListener(new ISelectionChangedListener() {

Expand Down

0 comments on commit 6715b42

Please sign in to comment.