check content options are now language specific
diff --git a/core/plugins/org.eclipse.dltk.core/model/org/eclipse/dltk/core/DLTKCore.java b/core/plugins/org.eclipse.dltk.core/model/org/eclipse/dltk/core/DLTKCore.java
index 994b260..4852800 100644
--- a/core/plugins/org.eclipse.dltk.core/model/org/eclipse/dltk/core/DLTKCore.java
+++ b/core/plugins/org.eclipse.dltk.core/model/org/eclipse/dltk/core/DLTKCore.java
@@ -218,18 +218,6 @@
 	public static final String CORE_INCOMPLETE_BUILDPATH = PLUGIN_ID
 			+ ".incompleteBuildpath"; //$NON-NLS-1$
 
-	/**
-	 * @deprecated
-	 */
-	public static final String CORE_NON_LOCAL_EMPTY_FILE_CONTENT_TYPE_CHECKING = PLUGIN_ID
-			+ ".nonLocalEmptyFileContentCheking"; //$NON-NLS-1$
-
-	/**
-	 * @deprecated
-	 */
-	public static final String CORE_FILES_WITH_EXTENSION_CONTENT_CHECKING = PLUGIN_ID
-			+ ".filesWithExtensionsContentChecking"; //$NON-NLS-1$
-
 	/*
 	 * Possible configurable option ID.
 	 * 
diff --git a/core/plugins/org.eclipse.dltk.core/model/org/eclipse/dltk/internal/core/DLTKCorePreferenceInitializer.java b/core/plugins/org.eclipse.dltk.core/model/org/eclipse/dltk/internal/core/DLTKCorePreferenceInitializer.java
index 86e59dd..657abfc 100644
--- a/core/plugins/org.eclipse.dltk.core/model/org/eclipse/dltk/internal/core/DLTKCorePreferenceInitializer.java
+++ b/core/plugins/org.eclipse.dltk.core/model/org/eclipse/dltk/internal/core/DLTKCorePreferenceInitializer.java
@@ -50,9 +50,6 @@
 		defaultOptionsMap.put(
 				DLTKCore.CORE_ENABLE_BUILDPATH_EXCLUSION_PATTERNS,
 				DLTKCore.ENABLED);
-		defaultOptionsMap.put(
-				DLTKCore.CORE_NON_LOCAL_EMPTY_FILE_CONTENT_TYPE_CHECKING,
-				DLTKCore.ENABLED);
 
 		// encoding setting comes from resource plug-in
 		optionNames.add(DLTKCore.CORE_ENCODING);