[117906] Server project not shareable
diff --git a/plugins/org.eclipse.wst.server.core/servercore/org/eclipse/wst/server/core/internal/RuntimeWorkingCopy.java b/plugins/org.eclipse.wst.server.core/servercore/org/eclipse/wst/server/core/internal/RuntimeWorkingCopy.java
index 08951d9..98b43db 100644
--- a/plugins/org.eclipse.wst.server.core/servercore/org/eclipse/wst/server/core/internal/RuntimeWorkingCopy.java
+++ b/plugins/org.eclipse.wst.server.core/servercore/org/eclipse/wst/server/core/internal/RuntimeWorkingCopy.java
@@ -191,10 +191,8 @@
 	}
 
 	protected void updateRuntimeReferences(final String oldId, final String newId, final IRuntime origRuntime) {
-		class UpdateRuntimeReferencesJob extends Job {
-			/**
-			 * A job that updates runtime references when a runtime changes.
-			 */
+		// TODO fix me
+		/*class UpdateRuntimeReferencesJob extends Job {
 			public UpdateRuntimeReferencesJob() {
 				super(NLS.bind(Messages.savingTask, newId));
 			}
@@ -240,7 +238,7 @@
 			}
 		}
 		UpdateRuntimeReferencesJob job = new UpdateRuntimeReferencesJob();
-		job.schedule();
+		job.schedule();*/
 	}
 	
 	/**
@@ -253,10 +251,8 @@
 		if (runtime == null)
 			return;
 
-		class RebuildRuntimeReferencesJob extends Job {
-			/**
-			 * A job that rebuilds projects when a runtime changes.
-			 */
+		// TODO fix me
+		/*class RebuildRuntimeReferencesJob extends Job {
 			public RebuildRuntimeReferencesJob() {
 				super(Messages.taskPerforming);
 			}
@@ -287,7 +283,7 @@
 			}
 		}
 		RebuildRuntimeReferencesJob job = new RebuildRuntimeReferencesJob();
-		job.schedule();
+		job.schedule();*/
 	}
 
 	protected RuntimeDelegate getWorkingCopyDelegate(IProgressMonitor monitor) {