Bug 552896 - Use varargs in AbstractLaunchConfigurationTabGroup#setTabs

Requires also to bump the minor version

Change-Id: I839da215ca738c1c3d28092f815b139207d7afc0
Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTabGroup.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTabGroup.java
index 79daa7c..c3472b7 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTabGroup.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTabGroup.java
@@ -49,7 +49,7 @@
 	 *
 	 * @param tabs the tabs in this group
 	 */
-	protected void setTabs(ILaunchConfigurationTab[] tabs) {
+	protected void setTabs(ILaunchConfigurationTab... tabs) {
 		fTabs = tabs;
 	}