[258742] React to Jetty version change
diff --git a/plugins/org.eclipse.jst.server.preview.adapter/src/org/eclipse/jst/server/preview/adapter/internal/core/PreviewLaunchConfigurationDelegate.java b/plugins/org.eclipse.jst.server.preview.adapter/src/org/eclipse/jst/server/preview/adapter/internal/core/PreviewLaunchConfigurationDelegate.java
index 7aff71e..63b4c60 100644
--- a/plugins/org.eclipse.jst.server.preview.adapter/src/org/eclipse/jst/server/preview/adapter/internal/core/PreviewLaunchConfigurationDelegate.java
+++ b/plugins/org.eclipse.jst.server.preview.adapter/src/org/eclipse/jst/server/preview/adapter/internal/core/PreviewLaunchConfigurationDelegate.java
@@ -73,8 +73,9 @@
 			jars[i] = path.toOSString();
 		}
 		
-		if (new File(jars[7] + "bin").exists())
-			jars[7] = jars[7] + "bin";
+		System.out.println(jars[7] + File.separator + "bin");
+		if (new File(jars[7] + File.separator + "bin").exists())
+			jars[7] = jars[7] + File.separator + "bin";
 		
 		IVMInstall vm = verifyVMInstall(configuration);