diff --git a/core/org.eclipse.cdt.core/plugin.xml b/core/org.eclipse.cdt.core/plugin.xml index 7a29da1d44f..4b2e257ed6a 100644 --- a/core/org.eclipse.cdt.core/plugin.xml +++ b/core/org.eclipse.cdt.core/plugin.xml @@ -815,12 +815,5 @@ name="%ScannerInfoExtensionLanguageSettingsProvider.name"> - - - - diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/internal/core/resources/CygwinEFSExtensionProvider.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/internal/core/resources/CygwinEFSExtensionProvider.java deleted file mode 100644 index d643c9784d7..00000000000 --- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/internal/core/resources/CygwinEFSExtensionProvider.java +++ /dev/null @@ -1,32 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2011, 2011 Andrew Gvozdev and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * Andrew Gvozdev - initial API and implementation - *******************************************************************************/ - -package org.eclipse.cdt.internal.core.resources; - -import java.net.URI; - -import org.eclipse.cdt.core.CCorePlugin; -import org.eclipse.cdt.core.EFSExtensionProvider; -import org.eclipse.cdt.internal.core.Cygwin; - -public class CygwinEFSExtensionProvider extends EFSExtensionProvider { - @Override - public String getMappedPath(URI locationURI) { - String cygwinPath = getPathFromURI(locationURI); - String windowsPath = null; - try { - windowsPath = Cygwin.cygwinToWindowsPath(cygwinPath); - } catch (Exception e) { - CCorePlugin.log(e); - } - return windowsPath; - } -}