Bug 49077 - Cannot append more than one jar to default bootpath
diff --git a/org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/AbstractJavaLaunchConfigurationDelegate.java b/org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/AbstractJavaLaunchConfigurationDelegate.java
index 7c657ba..bfe479e 100644
--- a/org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/AbstractJavaLaunchConfigurationDelegate.java
+++ b/org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/AbstractJavaLaunchConfigurationDelegate.java
@@ -273,7 +273,7 @@
 		if (jreContainerFound) {
 			List bootEntriesAppend= new ArrayList();
 			for (; index < entries.length; index ++) {
-				IRuntimeClasspathEntry entry= entries[index++];
+				IRuntimeClasspathEntry entry= entries[index];
 				if (entry.getClasspathProperty() == IRuntimeClasspathEntry.BOOTSTRAP_CLASSES) {
 						bootEntriesAppend.add(entry);
 				}