[138119] Cleanup
diff --git a/plugins/org.eclipse.jst.server.tomcat.core/build.properties b/plugins/org.eclipse.jst.server.tomcat.core/build.properties
index 13f193b..fe0a577 100644
--- a/plugins/org.eclipse.jst.server.tomcat.core/build.properties
+++ b/plugins/org.eclipse.jst.server.tomcat.core/build.properties
@@ -18,5 +18,4 @@
 bin.excludes = bin/**,\
                @dot/**,\
                temp.folder/**
-src.includes = schema/
 source.. = tomcatcore/
diff --git a/plugins/org.eclipse.jst.server.tomcat.core/tomcatcore/org/eclipse/jst/server/tomcat/core/internal/TomcatLaunchConfigurationDelegate.java b/plugins/org.eclipse.jst.server.tomcat.core/tomcatcore/org/eclipse/jst/server/tomcat/core/internal/TomcatLaunchConfigurationDelegate.java
index 104cc1d..0aab747 100644
--- a/plugins/org.eclipse.jst.server.tomcat.core/tomcatcore/org/eclipse/jst/server/tomcat/core/internal/TomcatLaunchConfigurationDelegate.java
+++ b/plugins/org.eclipse.jst.server.tomcat.core/tomcatcore/org/eclipse/jst/server/tomcat/core/internal/TomcatLaunchConfigurationDelegate.java
@@ -47,10 +47,8 @@
 		IVMInstall vm = verifyVMInstall(configuration);
 		
 		IVMRunner runner = vm.getVMRunner(mode);
-        if (runner==null)
-        {
-        	runner = vm.getVMRunner(ILaunchManager.RUN_MODE);
-	    }
+		if (runner == null)
+			runner = vm.getVMRunner(ILaunchManager.RUN_MODE);
 		
 		File workingDir = verifyWorkingDirectory(configuration);
 		String workingDirName = null;