mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-21 21:52:10 +02:00
Fix warnings about non-vararg override for vararg method.
Change-Id: I8b4aadf9e1357e1a0203c92bba9e4495f668e787 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
This commit is contained in:
parent
c6e069df3e
commit
a4c21ac717
4 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %Bundle-Name.0
|
||||
Bundle-SymbolicName: org.eclipse.cdt.autotools.ui;singleton:=true
|
||||
Bundle-Version: 2.0.2.qualifier
|
||||
Bundle-Version: 2.0.3.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.autotools.ui.AutotoolsUIPlugin
|
||||
Bundle-Localization: plugin
|
||||
Bundle-Vendor: %provider
|
||||
|
|
|
@ -154,7 +154,7 @@ public abstract class SelectionStatusDialog extends SelectionDialog {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void setInitialSelections(Object[] selectedElements) {
|
||||
public void setInitialSelections(Object... selectedElements) {
|
||||
super.setInitialSelections(selectedElements);
|
||||
fInitialSelectionSet = true;
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.ui; singleton:=true
|
||||
Bundle-Version: 6.4.0.qualifier
|
||||
Bundle-Version: 6.4.1.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.ui.CUIPlugin
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -153,7 +153,7 @@ public abstract class SelectionStatusDialog extends SelectionDialog {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void setInitialSelections(Object[] selectedElements) {
|
||||
public void setInitialSelections(Object... selectedElements) {
|
||||
super.setInitialSelections(selectedElements);
|
||||
fInitialSelectionSet = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue